-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.web.json
40 lines (40 loc) · 933 Bytes
/
tsconfig.web.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"noEmitOnError": true,
"skipLibCheck": true,
"outDir": "./out-tsc/app",
"importHelpers": true,
"target": "es2015",
"module": "es2020",
"paths": {
"@app/*": ["src/app/*.web.ts", "src/app/*"],
"@classes/*": ["classes/*.web.ts", "classes/*"],
"@src/*": [ "src/*.web.ts", "src/*" ],
"@modules/*": [ "src/modules/*.web.ts", "src/modules/*", "src/modules/*/index.ts" ],
"@typings/*": [ "typings/*", "typings/index.d" ]
},
"lib": [
"es2018",
"dom",
"es6"
]
},
"include": [
"./typings/**/*.d.ts"
],
"exclude": [
"node_modules",
"platforms",
"e2e",
"_transpiled",
"_templates",
"migrations",
"api",
]
}