forked from johnpapa/angular-tour-of-heroes
-
Notifications
You must be signed in to change notification settings - Fork 30
/
tsconfig.json
39 lines (39 loc) · 1004 Bytes
/
tsconfig.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
{
"compilerOptions": {
"outDir": "dist/app",
"target": "ES5",
"module": "system",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
},
"filesGlob": [
"app/**/*.ts",
"typings/**/*.d.ts",
"node_modules/immutable/dist/immutable.d.ts"
],
"files": [
"app/app.component.ts",
"app/boot.ts",
"app/dashboard.component.ts",
"app/hero-detail.component.ts",
"app/hero.service.ts",
"app/hero.ts",
"app/heroes.component.ts",
"app/mock-heroes.ts",
"typings/node-uuid/node-uuid-base.d.ts",
"typings/node-uuid/node-uuid-cjs.d.ts",
"typings/node-uuid/node-uuid-global.d.ts",
"typings/node-uuid/node-uuid.d.ts",
"typings/node/node.d.ts",
"typings/tsd.d.ts",
"node_modules/immutable/dist/immutable.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}