forked from akveo/nebular
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.publish.json
42 lines (42 loc) · 907 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
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2017",
"dom"
],
"module": "es2015",
"moduleResolution": "node",
"noEmitOnError": true,
"outDir": "./src/.lib",
"rootDir": "./.ng_build",
"sourceMap": true,
"target": "es5",
"inlineSources": true,
"stripInternal": true,
"baseUrl": ".",
"paths": {
"@nebular/theme": ["./.ng_build/theme"]
},
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./.ng_build/**/*"
],
"exclude": [
"./.ng_build/**/*.e2e.ts",
"./.ng_build/**/*.spec.ts",
"./.ng_build/**/schematics/*"
],
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"genDir": "./.ng_compiled"
}
}