mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-24 03:10:13 +01:00
29 lines
619 B
JSON
29 lines
619 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noEmitHelpers": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"typings/main.d.ts",
|
|
"typings/main"
|
|
],
|
|
"filesGlob": [
|
|
"./src/**/*.ts",
|
|
"./test/**/*.ts",
|
|
"!./node_modules/**/*.ts",
|
|
"src/custom-typings.d.ts",
|
|
"typings/browser.d.ts"
|
|
],
|
|
"awesomeTypescriptLoaderOptions": {
|
|
"resolveGlobs": true,
|
|
"forkChecker": true
|
|
},
|
|
"compileOnSave": false,
|
|
"buildOnSave": false,
|
|
"atom": { "rewriteTsconfig": false }
|
|
}
|