forked from RyverApp/ratatoskr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (47 loc) · 1.32 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
{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"rootDir": "./src",
"outDir": "./lib",
"inlineSourceMap": true,
"inlineSources": true,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"forceConsistentCasingInFileNames": true
},
"filesGlob": [
"./src/**/*.ts",
"./typings/**/*.d.ts"
],
"files": [
"./src/interfaces.d.ts",
"./typings/globals/es6-promise/index.d.ts",
"./typings/globals/jasmine/index.d.ts",
"./typings/globals/node/index.d.ts",
"./typings/globals/ws/index.d.ts",
"./typings/index.d.ts",
"./typings/vendor/debug/index.d.ts",
"./typings/vendor/shortid/index.d.ts",
"./src/client.ts",
"./src/extensions/presence-batch.ts",
"./src/extensions/resume.ts",
"./src/main.ts"
],
"atom": {
"rewriteTsconfig": true
},
"vscode": {
"rewriteTsconfig": true
}
}