41 lines
804 B
JSON
41 lines
804 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"noEmitHelpers": true,
|
|
"strictNullChecks": false,
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.e2e.ts"
|
|
],
|
|
"awesomeTypescriptLoaderOptions": {
|
|
"forkChecker": true,
|
|
"useWebpackText": true
|
|
},
|
|
"angularCompilerOptions": {
|
|
"genDir": "./compiled",
|
|
"skipMetadataEmit": true
|
|
},
|
|
"compileOnSave": false,
|
|
"buildOnSave": false,
|
|
"atom": {
|
|
"rewriteTsconfig": false
|
|
}
|
|
}
|