32 lines
576 B
JSON
32 lines
576 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"declaration": false,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"es2015"
|
||
|
],
|
||
|
"module": "es2015",
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"target": "es5",
|
||
|
"typeRoots": [
|
||
|
"../node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"src/**/*.spec.ts",
|
||
|
"src/**/__tests__/*.ts"
|
||
|
],
|
||
|
"compileOnSave": false,
|
||
|
"atom": {
|
||
|
"rewriteTsconfig": false
|
||
|
}
|
||
|
}
|