forked from smmorneau/tour-of-heroes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 826 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
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "system",
"moduleResolution": "node",
"outDir": "public/dist/js",
"sourceMap": true,
"target": "ES5"
},
"exclude": [
"node_modules"
],
"filesGlob": [
"src/**/*.ts",
"typings/*.d.ts"
],
"files": [
"typings/index.d.ts",
"src/js/components/app.component.ts",
"src/js/components/dashboard.component.ts",
"src/js/components/hero-detail.component.ts",
"src/js/components/heroes.component.ts",
"src/js/main.ts",
"src/js/models/hero.ts",
"src/js/services/hero.service.ts",
"src/js/services/in-memory-data.service.ts",
"src/js/templates/dashboard.html.ts",
"src/js/templates/hero-detail.html.ts",
"src/js/templates/heroes.html.ts"
]
}