-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
52 lines (52 loc) · 1.71 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
{
"compileOnSave": false,
"buildOnSave": false,
"compilerOptions": {
"target": "es6",
"module": "es2015",
"jsx": "react",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"filesGlob": [
"**/*.ts",
"**/*.tsx",
"!node_modules/**"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"src/js/actions/home-actions.ts",
"src/js/actions/main-actions.ts",
"src/js/dispatcher/app-dispatcher.ts",
"src/js/global.d.ts",
"src/js/stores/home/home-city-store.ts",
"src/js/stores/home/home-weather-store.ts",
"src/js/stores/main-store.ts",
"src/js/utils/custom-type.ts",
"src/js/utils/google-map-helpers.ts",
"src/modules/block-ui.d.ts",
"src/modules/bootstrap-select.d.ts",
"src/modules/classnames.d.ts",
"src/modules/react-bootstrap.d.ts",
"typings/flux/flux.d.ts",
"typings/immutable/immutable.d.ts",
"typings/jquery/jquery.d.ts",
"typings/react-bootstrap/react-bootstrap.d.ts",
"typings/react/react-dom.d.ts",
"typings/react/react.d.ts",
"typings/tsd.d.ts",
"src/js/components/_common/google-map-markers.tsx",
"src/js/components/_common/select-picker.tsx",
"src/js/components/about/about-page.tsx",
"src/js/components/home/home-cities.tsx",
"src/js/components/home/home-map.tsx",
"src/js/components/home/home-page.tsx",
"src/js/components/home/home-weather.tsx",
"src/js/components/main/main-header.tsx",
"src/js/components/main/main-page.tsx",
"src/js/main.tsx"
]
}