-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
83 lines (83 loc) · 2.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": "1.6.0",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"files": [
"app/bootstrap.ts",
"app/components/about/about_spec.ts",
"app/components/about/about.ts",
"app/components/app/app_spec.ts",
"app/components/app/app.ts",
"app/components/home/home_spec.ts",
"app/components/home/home.ts",
"app/services/name_list_spec.ts",
"app/services/name_list.ts",
"app/typings.d.ts",
"gulpfile.ts",
"tools/config.ts",
"tools/tasks/build.csslib.dev.ts",
"tools/tasks/build.fonts.ts",
"tools/tasks/build.index.dev.ts",
"tools/tasks/build.js.dev.ts",
"tools/tasks/build.jslib.dev.ts",
"tools/tasks/build.ng2bs.dev.ts",
"tools/tasks/build.sass.dev.ts",
"tools/tasks/build.test.ts",
"tools/tasks/clean.ts",
"tools/tasks/karma.start.ts",
"tools/tasks/npm.ts",
"tools/tasks/server.start.ts",
"tools/tasks/tsd.ts",
"tools/tasks/tslint.ts",
"tools/tasks/watch.dev.ts",
"tools/tasks/watch.serve.ts",
"tools/tasks/watch.test.ts",
"tools/typings/connect-livereload.d.ts",
"tools/typings/gulp-load-plugins.d.ts",
"tools/typings/karma.d.ts",
"tools/typings/mini-lr.d.ts",
"tools/typings/ng2_test.d.ts",
"tools/typings/ng2_testing_workaround.d.ts",
"tools/typings/open.d.ts",
"tools/typings/run-sequence.d.ts",
"tools/typings/slash.d.ts",
"tools/typings/systemjs-builder.d.ts",
"tools/typings/tsd/async/async.d.ts",
"tools/typings/tsd/del/del.d.ts",
"tools/typings/tsd/express/express.d.ts",
"tools/typings/tsd/glob/glob.d.ts",
"tools/typings/tsd/gulp-shell/gulp-shell.d.ts",
"tools/typings/tsd/gulp/gulp.d.ts",
"tools/typings/tsd/mime/mime.d.ts",
"tools/typings/tsd/minimatch/minimatch.d.ts",
"tools/typings/tsd/node/node.d.ts",
"tools/typings/tsd/orchestrator/orchestrator.d.ts",
"tools/typings/tsd/q/Q.d.ts",
"tools/typings/tsd/serve-static/serve-static.d.ts",
"tools/typings/tsd/systemjs/systemjs.d.ts",
"tools/typings/tsd/tsd.d.ts",
"tools/typings/yargs.d.ts",
"tools/utils.ts",
"tools/utils/server.ts",
"tools/utils/tasks-tools.ts",
"tools/utils/template-injectables.ts",
"tools/utils/template-locals.ts"
],
"filesGlob": [
"./app/**/*.ts",
"./gulpfile.ts",
"./tools/**/*.ts",
"./tsd_typings/**/*.d.ts"
],
"compileOnSave": false,
"exclude": []
}