-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtsconfig.json
37 lines (37 loc) · 977 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
35
36
37
{
"compilerOptions": {
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": [
"es2015",
"es2015.promise",
"es2016.array.include",
"dom",
"es2019"
],
"strict": true,
"moduleResolution": "node",
"baseUrl": ".",
"typeRoots": ["node_modules/@types"],
// "noImplicitAny": false,
"paths": {
"src/*": ["src/*"],
"components/*": ["src/components/*"],
"helpers/*": ["src/assets/*"],
"common/*": ["src/common/*"],
"assets/*": ["src/assets/*"],
"consts/*": ["src/consts/*"],
"modules/*": ["src/modules/*"]
},
"noEmit": true,
"resolveJsonModule": true,
"target": "esnext",
"types": ["jest", "node"]
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js"],
"include": ["src/components", "src/**/*", "public/**/*.jpg"]
}