forked from Gbuomprisco/ngx-chips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.aot.json
45 lines (45 loc) · 1.3 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
{
"compilerOptions": {
"removeComments": true,
"noImplicitAny": false,
"module": "es2015",
"target": "es5",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"sourceMap": true,
"moduleResolution": "node",
"rootDir": ".",
"baseUrl": ".",
"inlineSources": true,
"skipLibCheck": true,
"typeRoots": [ "./node_modules/@types" ],
"types": ["node", "jasmine"],
"suppressImplicitAnyIndexErrors": true,
"lib": [
"dom",
"es2015"
],
"paths": {
"@angular/core": ["node_modules/@angular/core"],
"@angular/http": ["node_modules/@angular/http"],
"@angular/common": ["node_modules/@angular/common"],
"@angular/forms": ["node_modules/@angular/forms"],
"rxjs/*": ["node_modules/rxjs/*"]
}
},
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"angularCompilerOptions": {
"genDir": "factories",
"strictMetadataEmit": true
},
"files": [
"modules/ng2-tag-input.module.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": { "rewriteTsconfig": false }
}