-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
57 lines (57 loc) · 1.86 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
{
"compileOnSave": false,
"buildOnSave": false,
"compilerOptions": {
"target": "es6",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"experimentalAsyncFunctions": true,
"jsx": "react"
},
"filesGlob": [
"./**/*.ts",
"./**/*.tsx",
"!./node_modules/**/*.ts"
],
"files": [
"app/actions/dashboard-actions.ts",
"app/constants/dashboard-constants.ts",
"app/cores/dispatcher.ts",
"app/cores/enums.ts",
"app/cores/flux.ts",
"app/decorators/autobind-decorator.ts",
"app/decorators/factory.ts",
"app/decorators/handle-decorator.ts",
"app/decorators/log-class-decorator.ts",
"app/helpers/calculation-helpers.ts",
"app/helpers/interaction-helpers.ts",
"app/libs/add.d.ts",
"app/libs/react-motion.d.ts",
"app/services/dashboard-services.ts",
"app/stores/base-store.ts",
"app/stores/dashboard-store.ts",
"interfaces/bootstrap.d.ts",
"interfaces/classnames.d.ts",
"interfaces/events.d.ts",
"interfaces/flux.d.ts",
"interfaces/global.d.ts",
"interfaces/immutable.d.ts",
"interfaces/jquery.d.ts",
"interfaces/keymirror.d.ts",
"interfaces/random-color.d.ts",
"interfaces/react-dom.ts",
"interfaces/react-global.d.ts",
"interfaces/react.d.ts",
"typings/lodash/lodash.d.ts",
"typings/tsd.d.ts",
"app/components/dashboard/dashboard-action-buttons.tsx",
"app/components/dashboard/dashboard-basket.tsx",
"app/components/dashboard/dashboard-page.tsx",
"app/components/dashboard/dashboard-product-item.tsx",
"app/components/dashboard/dashboard-product-list.tsx",
"app/main.tsx"
],
"exclude": [
"node_modules"
]
}