-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig-fe-original.json
executable file
·51 lines (51 loc) · 1.04 KB
/
tsconfig-fe-original.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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@hot-reload-handler": [ "public/js/hot-reload-handler"],
"@hot-reloader": [ "public/js/hot-reloader"],
"@redux-store":["public/js/data-stores/redux-store"]
},
"types": [
"lodash",
"react",
"react-dom",
"redux",
"react-redux",
"redux-thunk",
"async",
"requirejs",
"socket.io",
"socket.io-client",
"immutable",
"uuid",
"whatwg-fetch"
],
"typeRoots": [
"node_modules/@types"
],
"target": "es5",
"module": "amd",
"noImplicitAny": false,
"removeComments": true,
"preserveConstEnums": true,
"allowJs": false,
"allowUnreachableCode": true,
"moduleResolution": "classic",
"lib": [
"es2015",
"es2016",
"dom"
]
},
"compileOnSave": false,
"files":[
"d.ts/index.d.ts",
"node_modules/redux/index.d.ts",
"node_modules/redux-thunk/index.d.ts"
],
"include": [
"./public/**/*.ts",
"./public/**/*.tsx"
]
}