-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
61 lines (61 loc) · 1.7 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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"sourceMap": true,
"jsx": "react"
},
"filesGlob": [
"./**/*.ts",
"./**/*.tsx",
"!./node_modules/**/*.ts",
"!./typings/**/*.ts",
"./typings/main.d.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": true
},
"files": [
"./app/actions/index.ts",
"./app/components/icon/icon-paths.ts",
"./app/containers/index.ts",
"./app/reducers/auth.ts",
"./app/reducers/data.ts",
"./app/reducers/index.ts",
"./app/utils/index.ts",
"./app/views/index.ts",
"./machine.ts",
"./app/components/alerts/index.tsx",
"./app/components/authenticated/index.tsx",
"./app/components/button/index.tsx",
"./app/components/course/index.tsx",
"./app/components/footer/index.tsx",
"./app/components/icon/index.tsx",
"./app/components/input/index.tsx",
"./app/components/modal/index.tsx",
"./app/components/sidebar-content/index.tsx",
"./app/components/sidebar/index.tsx",
"./app/components/tooltip/index.tsx",
"./app/containers/app.tsx",
"./app/containers/root/index.tsx",
"./app/main.tsx",
"./app/routes/index.tsx",
"./app/store/configureStore.tsx",
"./app/views/app/index.tsx",
"./app/views/control-panel/index.tsx",
"./app/views/enroll/index.tsx",
"./app/views/login/index.tsx",
"./app/views/progress/index.tsx",
"./app/views/search/index.tsx",
"./typings/main.d.ts"
]
}