-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.23 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
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noEmit": false,
"outDir": "lib"
},
"compileOnSave": true,
"buildOnSave": true,
"filesGlob": [
"src/*.ts",
"src/**/*.ts",
"src/typings/**/*.d.ts"
],
"files": [
"src/constants.ts",
"src/index.ts",
"src/testPath.ts",
"src/reporter/index.ts",
"src/runner/index.ts",
"src/runner/paths/runner.ts",
"src/runner/paths/node.ts",
"src/runner/runner-process.ts",
"src/runner/start-runner.ts",
"src/typings/chai/chai.d.ts",
"src/typings/cr/cr.d.ts",
"src/typings/cr/globals.d.ts",
"src/typings/es6-promise/es6-promise.d.ts",
"src/typings/mocha/mocha.d.ts",
"src/typings/node-file-exists/node-file-exists.d.ts",
"src/typings/node/node.d.ts",
"src/typings/process-console-log/index.d.ts",
"src/typings/set/set.d.ts",
"src/typings/tsd.d.ts",
"src/writeTests/index.ts"
],
"exclude": [
"node_modules"
],
"atom": {
"rewriteTsconfig": true
}
}