-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
executable file
·51 lines (51 loc) · 1.1 KB
/
tsconfig.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
41
42
43
44
45
46
47
48
49
50
51
{
"compilerOptions": {
"declaration": false,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es6",
"dom"
],
"baseUrl": ".",
"module": "es2020",
"moduleResolution": "node",
"outDir": "../dist/out-tsc",
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"paths": {
"@andes/auth": [
"projects/auth/src/public-api.ts"
],
"@andes/shared": [
"projects/shared/src/public-api.ts"
],
"@andes/form-builder": [
"projects/form-builder/src/public-api.ts"
]
}
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"./**/*.ts",
"./webpack.config.js",
".eslintrc.js",
"node_modules/ng2-slugify/**/*.ts",
"node_modules/@andes/plex/**/*.ts",
],
"exclude": [
"node_modules/@andes/plex/**/*.spec.ts",
"node_modules/@schematics/**/*.ts",
"node_modules/karma/**/*.ts",
],
"angularCompilerOptions": {
"fullTemplateTypeCheck": false,
"strictInjectionParameters": true
}
}