-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.inline.json
42 lines (42 loc) · 1008 Bytes
/
tsconfig.inline.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": {
"baseUrl": "",
"sourceRoot": "./inlineSrc",
"outDir": "./inlineDist",
"target": "es2015",
"module": "es2015",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"inlineSources": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"dom",
"es2018"
]
},
"angularCompilerOptions": {
"annotateForClosureCompiler": true,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true
},
"exclude": [
"inlineSrc/environment",
"inlineSrc/main.ts",
"inlineSrc/public_api.ts",
"inlineSrc/test.ts",
"src",
"bundle",
"index.d.ts",
"**/*.spec.ts",
"gulpfile.ts"
]
}