-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.21 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": true,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true
},
"filesGlob": [
"src/main/**/*.ts",
"src/main/**/*.tsx"
],
"compileOnSave": false,
"buildOnSave": false,
"files": [
"src/main/app.ts",
"src/main/gitconnect/ifaces.ts",
"src/main/gitconnect/index.ts",
"src/main/gitconnect/raw-ifaces.ts",
"src/main/gitconnect/services.ts",
"src/main/gitview/components/app.ts",
"src/main/gitview/components/comment.ts",
"src/main/gitview/components/commit.ts",
"src/main/gitview/components/index.ts",
"src/main/gitview/components/pulls.ts",
"src/main/gitview/components/relative-date.ts",
"src/main/gitview/index.ts",
"src/main/gitview/services.ts"
],
"atom": {
"rewriteTsconfig": true
}
}