This repository was archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
75 lines (75 loc) · 2.26 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"moduleResolution": "node",
"strictNullChecks": true,
"outDir": "./lib",
"rootDirs": [
"src",
"node_modules"
]
},
"filesGlob": [
"**/*.d.ts",
"**/*.ts",
"**/*.tsx",
"!**/*.test.ts",
"!**/*.test.tsx",
"!node_modules/**/*",
"!src/__tests__/**/*",
"!src/__coverage/**/*"
],
"exclude": [
"node_modules"
],
"files": [
"src/typings/coderoad/core.d.ts",
"src/typings/editor/index.d.ts",
"src/typings/globals/assertion-error/index.d.ts",
"src/typings/globals/atom-plugin-command-line/index.d.ts",
"src/typings/globals/atom/custom.d.ts",
"src/typings/globals/atom/index.d.ts",
"src/typings/globals/core-js/index.d.ts",
"src/typings/globals/electron/index.d.ts",
"src/typings/globals/emissary/index.d.ts",
"src/typings/globals/jest/index.d.ts",
"src/typings/globals/jquery/index.d.ts",
"src/typings/globals/mixto/index.d.ts",
"src/typings/globals/node-file-exists/index.d.ts",
"src/typings/globals/node/index.d.ts",
"src/typings/globals/pathwatcher/index.d.ts",
"src/typings/globals/q/index.d.ts",
"src/typings/globals/redux/index.d.ts",
"src/typings/globals/rx/index.d.ts",
"src/typings/globals/sort-package-json/index.d.ts",
"src/typings/globals/space-pen/index.d.ts",
"src/typings/globals/status-bar/index.d.ts",
"src/typings/globals/text-buffer/index.d.ts",
"src/typings/index.d.ts",
"src/editor/actions/console.ts",
"src/editor/actions/editor.ts",
"src/editor/actions/file.ts",
"src/editor/actions/index.ts",
"src/editor/actions/quit.ts",
"src/editor/actions/tabs.ts",
"src/editor/actions/terminal.ts",
"src/editor/actions/write.ts",
"src/editor/actions/writeFile.ts",
"src/editor/index.ts",
"src/editor/utils/compareVersions.ts",
"src/editor/utils/directory.ts",
"src/editor/utils/grammar.ts",
"src/editor/utils/subscriptions.ts",
"src/editor/utils/ui.ts",
"src/index.ts",
"src/editor/utils/setup.tsx"
]
}