2020-05-04 23:35:46 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"noLib": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"target": "esnext",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom"
|
2020-06-04 19:15:39 +03:00
|
|
|
],
|
|
|
|
"types" : [
|
|
|
|
"node"
|
|
|
|
]
|
2020-05-04 23:35:46 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|