forked from thoughtram/ng2-contacts-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 1.05 KB
/
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
{
"version": "1.6.4",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"files": [
"./app/common/clone-service.ts",
"./app/common/contact-data.ts",
"./app/common/contact-service.ts",
"./app/components/contact-list/contact-list.ts",
"./app/components/contact-editor/contact-editor.ts",
"./app/components/contact-detail/contact-detail.ts",
"./app/contacts-app.ts",
"./app/init.ts",
"./app/models/contact.ts",
"./app/typings/_custom.d.ts",
"./app/typings/ng2_test.d.ts",
"./tsd_typings/jasmine/jasmine.d.ts",
"./tsd_typings/systemjs/systemjs.d.ts",
"./tsd_typings/tsd.d.ts"
],
"filesGlob": [
"./app/**/*.ts",
"./tsd_typings/**/*.d.ts"
],
"compileOnSave": false
}