forked from akveo/nebular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.publish.json
43 lines (43 loc) · 993 Bytes
/
tsconfig.publish.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
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2018"
],
"module": "esnext",
"moduleResolution": "node",
"noEmitOnError": true,
"rootDir": "./.ng_build",
"sourceMap": true,
"target": "es2015",
"inlineSources": true,
"stripInternal": true,
"importHelpers": true,
"baseUrl": ".",
"paths": {
"@nebular/theme": ["./src/.lib/theme"]
},
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"./.ng_build/**/*.e2e.ts",
"./.ng_build/**/*.spec.ts",
"./.ng_build/**/schematics/*"
],
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"skipMetadataEmit": false,
"strictTypeChecks": true,
"enableIvy": false
}
}