initial commit
This commit is contained in:
commit
c43cf85dec
1081 changed files with 282568 additions and 0 deletions
40
frontend/tsconfig.json
Normal file
40
frontend/tsconfig.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"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",
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue