-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·46 lines (46 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.37 KB
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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"strict": false,
"allowJs": true,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"isolatedModules": true,
"noStrictGenericChecks" : false,
"lib": [ "es2015","dom" ],
//"noEmit": false
//"outDir": "typ"
},
"files": [
//"./src/main_DIST.tsx",
"typings/globals/classnames/index.d.ts",
"typings/modules/es6-promise/index.d.ts",
"typings/globals/react/index.d.ts",
"typings/modules/react-dom/index.d.ts",
"typings/globals/react-bootstrap/index.d.ts",
"typings/modules/react-redux/index.d.ts",
"typings/modules/react-router/index.d.ts",
"typings/globals/react-dnd/index.d.ts",
"typings/globals/node/index.d.ts",
"typings/globals/node-uuid/index.d.ts",
"typings/globals/node-uuid/node-uuid-base/index.d.ts",
"typings/globals/node-uuid/node-uuid-global/index.d.ts",
"typings/globals/node-uuid/node-uuid-cjs/index.d.ts",
"typings/globals/expect/index.d.ts",
"typings/globals/mocha/index.d.ts",
"typings/globals/chai/index.d.ts",
"typings/globals/react-dnd-html5-backend/index.d.ts"
],
"filesGlob": [
"src/**/*.tsx",
"src/**/*.ts",
"typings/**/*d.ts",
"./**/*.ts",
"!./node_modules/**/*.ts"
],
"exclude": []
}