2024-06-11 11:39:10 +03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"outDir": "build_dev/js",
|
2024-11-07 16:58:30 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-06-11 11:39:10 +03:00
|
|
|
"typeRoots": [
|
|
|
|
|
"node_modules/@types"
|
|
|
|
|
],
|
|
|
|
|
"lib": [
|
|
|
|
|
"es2016",
|
|
|
|
|
"dom",
|
|
|
|
|
"es2017.object",
|
|
|
|
|
"es2018.promise"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"compileOnSave": false,
|
|
|
|
|
"buildOnSave": false,
|
|
|
|
|
"include": [
|
|
|
|
|
"src/ts/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"./node_modules/@types",
|
|
|
|
|
"**/*.ngfactory.ts",
|
|
|
|
|
"**/*.shim.ts",
|
|
|
|
|
"src/ts/main.aot.ts",
|
|
|
|
|
"src/ts/generated-sources/**/*",
|
|
|
|
|
"src/ts/page.routing.ts",
|
|
|
|
|
"src/ts/aot"
|
|
|
|
|
]
|
|
|
|
|
}
|