This repository was archived by the owner on Feb 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1.28 KB
/
Copy pathtsconfig.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": false,
"noImplicitAny": true,
"removeComments": false,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"sourceMap": false
},
"filesGlob": [
"**/*.ts",
"**/*.tsx",
"!node_modules/**"
],
"exclude": [
"typings/browser.d.ts",
"typings/browser"
],
"compileOnSave": true,
"buildOnSave": false,
"files": [
"lib/common.d.ts",
"lib/GMXFileManager.ts",
"lib/main.ts",
"newTypings/atomAPI.d.ts",
"typings/atom/atom.d.ts",
"typings/emissary/emissary.d.ts",
"typings/jquery/jquery.d.ts",
"typings/mixto/mixto.d.ts",
"typings/node/node.d.ts",
"typings/pathwatcher/pathwatcher.d.ts",
"typings/q/Q.d.ts",
"typings/space-pen/space-pen.d.ts",
"typings/status-bar/status-bar.d.ts",
"typings/text-buffer/text-buffer.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}