-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
51 lines (51 loc) · 1.6 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
50
51
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
// "@assets/*": ["./app/assets/*"],
// "@components/*": ["./app/components/*"],
// "@constants/*": ["./app/constants/*"],
// "@navigations/*": ["./app/navigations/*"],
// "@screens/*": ["./app/screens/*"],
// "@styles/*": ["./app/styles/*"],
// "@store/*": ["./app/store/*"],
// "@themes/*": ["./app/themes/*"],
// "@utils/*": ["./app/utils*"]
},
"target": "esnext",
"module": "commonjs",
"lib": ["es2017"],
"allowJs": true,
"checkJs": false,
"jsx": "react-native",
"sourceMap": false,
"removeComments": false,
"noEmit": true,
"incremental": true,
"importHelpers": true,
"isolatedModules": true,
"strict": false,
"noImplicitAny": true,
"declaration": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": false,
"strictNullChecks": true,
"strictFunctionTypes": true
// "strictPropertyInitialization": true,
// "noImplicitThis": true,
// "alwaysStrict": true
// "noImplicitReturns": true,
// "noFallthroughCasesInSwitch": true,
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
],
"typeRoots": ["node_modules/@types", "@types"]
}