-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
49 lines (49 loc) · 1.38 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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnusedLabels": true,
"declaration": false,
"experimentalDecorators": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": false,
"strictNullChecks": true,
"target": "es2015",
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"rootDir": "src",
"outDir": "dist",
"baseUrl": "./src",
"paths": {
"src/*": [""],
"ABIs/*": ["ABIs/*"],
"assets/*": ["assets/*"],
"components/*": ["components/*"],
"HOCs/*": ["HOCs/*"],
"networking/*": ["networking/*"],
"configs/*": ["configs/*"],
"styled/*": ["styled/*"],
"utils/*": ["utils/*"]
},
"typeRoots": ["node_modules/@types", "typings"],
"types": ["react", "react-dom", "node", "jest", "react-star-ratings"],
"lib": ["dom", "es5", "es6", "esnext", "scripthost"]
},
"files": ["custom.d.ts"],
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "config", "docs"],
"awesomeTypescriptLoaderOptions": {
"useCache": true,
"isolatedModules": true,
"reportFiles": ["src/**/*.{ts,tsx}"]
}
}