-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 990 Bytes
/
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
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"downlevelIteration": true,
"jsx": "react",
"lib": ["dom", "es2015", "es2016", "es2017"],
"module": "commonjs",
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "./dist/",
"paths": {
"*": ["types/*"],
"~bioblocks-portal~": ["./src"],
"~bioblocks-portal~/test": ["./test"],
"~bioblocks-portal~/*": ["./src/*"],
"jest": ["node_modules/@types/jest/index.d.ts"],
"react-redux": ["node_modules/@types/react-redux/index.d.ts"],
"redux": ["node_modules/redux/index.d.ts"]
},
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es5",
"typeRoots": ["./types", "./node_modules/@types"]
},
"exclude": ["node_modules"],
"include": ["src/**/*", "types", "configs/**/*", "./*.tsx"],
"typeAcquisition": {
"enable": false
}
}