-
Notifications
You must be signed in to change notification settings - Fork 121
/
tsconfig.json
52 lines (52 loc) · 1.53 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
{
"version": "1.8.9",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"noLib": false,
"preserveConstEnums": false,
"suppressImplicitAnyIndexErrors": true,
"sourceMap": true,
"moduleResolution": "node"
},
"filesGlob": [
"./defs/**/*.ts",
"./tasks/**/*.ts",
"./test/*.ts",
"./test/tsconfig_artifact/newlineConfigs/*.ts"
],
"files": [
"defs/es6-promise/es6-promise.d.ts",
"defs/gruntjs/gruntjs.d.ts",
"defs/lodash/lodash.d.ts",
"defs/node/node.d.ts",
"defs/nodeunit/nodeunit.d.ts",
"defs/tsd.d.ts",
"tasks/modules/amdLoader.ts",
"tasks/modules/cacheUtils.ts",
"tasks/modules/compile.ts",
"tasks/modules/defaults.ts",
"tasks/modules/html2ts.ts",
"tasks/modules/interfaces.d.ts",
"tasks/modules/optionsResolver.ts",
"tasks/modules/reference.ts",
"tasks/modules/templateCache.ts",
"tasks/modules/transformers.ts",
"tasks/modules/tsconfig.ts",
"tasks/modules/utils.ts",
"tasks/modules/visualStudioOptionsResolver.ts",
"tasks/scratch.ts",
"tasks/ts.ts",
"test/commandLineAssertions.ts",
"test/optionsResolverTests.ts",
"test/references-transform-library.d.ts",
"test/test.ts"
],
"exclude": [],
"atom": {
"rewriteTsconfig": false
}
}