forked from mgechev/angular-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 985 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
{
"version": "1.5.3",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"files": [
"./app/app.ts",
"./app/components/about/about.ts",
"./app/components/home/home.ts",
"./app/init.ts",
"./app/services/NameList.ts",
"./app/typings/_custom.d.ts",
"./tsd_typings/angular2/angular2.d.ts",
"./tsd_typings/angular2/router.d.ts",
"./tsd_typings/es6-promise/es6-promise.d.ts",
"./tsd_typings/rx/rx-lite.d.ts",
"./tsd_typings/rx/rx.d.ts",
"./tsd_typings/systemjs/systemjs.d.ts",
"./tsd_typings/tsd.d.ts"
],
"filesGlob": [
"./app/**/*.ts",
"./tsd_typings/**/*.ts"
],
"compileOnSave": false
}