forked from Gbuomprisco/ngx-chips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.aot.json
60 lines (58 loc) · 1.62 KB
/
tsconfig.aot.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
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
"removeComments": true,
"noImplicitAny": false,
"module": "es2015",
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"sourceMap": true,
"moduleResolution": "node",
"baseUrl": "",
"inlineSources": true,
"skipLibCheck": true,
"typeRoots": [ "./node_modules/@types" ],
"types": ["node", "jasmine"],
"suppressImplicitAnyIndexErrors": true,
"lib": [
"dom",
"es2015"
],
"paths": {
"core": ["modules/core"],
"components": ["modules/components"],
"helpers": ["modules/core/helpers"],
"styles": ["modules/core/styles"],
"pipes": ["modules/core/pipes"],
"tag-input": ["modules/components/tag-input"],
"dropdown": ["modules/components/dropdown"],
"icon": ["modules/components/icon"],
"tag": ["modules/components/tag"],
"tag-input-form": ["modules/components/tag-input-form"]
}
},
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"angularCompilerOptions": {
"genDir": "factories",
"strictMetadataEmit": true
},
"files": [
"modules/index.ts"
],
"include": [
"modules"
],
"exclude": [
"node_modules",
"dist",
"**/tests",
"**/*.spec.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": { "rewriteTsconfig": false }
}