-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
59 lines (59 loc) · 1.57 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"inlineSourceMap": true,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true
},
"filesGlob": [
"**/*.ts",
"**/*.tsx",
"!node_modules/**",
"!bower_components/**"
],
"exclude": [
"typings/main",
"typings/main.d.ts"
],
"compileOnSave": true,
"buildOnSave": false,
"files": [
"api/cars.ts",
"api/deepThought.ts",
"api/genres.ts",
"api/guestbook.ts",
"api/makes.ts",
"api/movies.ts",
"ngApp/js/app.ts",
"ngApp/js/controllers.ts",
"ngApp/js/services.ts",
"server.ts",
"typings/globals/angular-resource/index.d.ts",
"typings/globals/angular-ui-bootstrap/index.d.ts",
"typings/globals/angular-ui-router/index.d.ts",
"typings/globals/angular/index.d.ts",
"typings/globals/body-parser/index.d.ts",
"typings/globals/cookie-parser/index.d.ts",
"typings/globals/express-serve-static-core/index.d.ts",
"typings/globals/express/index.d.ts",
"typings/globals/jquery/index.d.ts",
"typings/globals/mime/index.d.ts",
"typings/globals/morgan/index.d.ts",
"typings/globals/node/index.d.ts",
"typings/globals/serve-favicon/index.d.ts",
"typings/globals/serve-static/index.d.ts",
"typings/index.d.ts"
],
"atom": {
"rewriteTsconfig": false
}
}