24 строки
593 B
JSON
24 строки
593 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"lib": ["es2015", "es2016", "es2017", "dom"],
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declarationDir": "dist/types",
|
|
"outDir": "dist/lib",
|
|
"typeRoots": ["node_modules/@types"],
|
|
"jsx": "react",
|
|
"types": ["jest"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src"]
|
|
}
|