forked from ng-alain/delon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.publish.json
46 lines (46 loc) · 1.05 KB
/
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
44
45
46
{
"compilerOptions": {
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es7",
"dom"
],
"module": "es2015",
"moduleResolution": "node",
"noEmitOnError": true,
"outDir": "./.lib",
"rootDir": "./.ng_build",
"sourceMap": true,
"target": "es5",
"inlineSources": true,
"stripInternal": true,
"baseUrl": ".",
"paths": {
"@delon/theme": ["./.ng_build/theme"],
"@delon/abc": ["./.ng_build/abc"],
"@delon/acl": ["./.ng_build/acl"]
},
"skipLibCheck": true,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./.ng_build/**/*"
],
"files": [
"./src/typings.d.ts"
],
"exclude": [
"./.ng_build/**/*.e2e.ts",
"./.ng_build/**/*.spec.ts"
],
"angularCompilerOptions": {
"preserveWhiteSpace": false,
"skipTemplateCodegen": true,
"strictMetadataEmit": false,
"genDir": "./.ng_compiled"
}
}