-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.41 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
{
"extends": "@abhijithvijayan/tsconfig",
"compilerOptions": {
"target": "ESNEXT", // ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'.
"module": "ESNEXT", // Module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'.
"jsx": "react",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"declaration": false,
"isolatedModules": true,
/* Additional Checks */
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"skipLibCheck": true,
"noResolve": false,
"resolveJsonModule": true,
"noImplicitReturns": false,
"baseUrl": "source",
"paths": {
"components/*": ["components/*"],
"assets/*": ["assets/*"],
"constants/*": ["constants/*"],
"context/*": ["context/*"],
"hooks/*": ["hooks/*"],
"navigation/*": ["navigation/*"],
"scenes/*": ["scenes/*"],
"scripts/*": ["scripts/*"],
"selectors/*": ["selectors/*"],
"state/*": ["state/*"],
"types/*": ["types/*"],
"utils/*": ["utils/*"]
}
},
"include": ["source", "test.ts"],
"exclude": [
"source/native",
"source/web/webpack.config.js",
"source/web/e2e",
"source/web/extension",
"**/*.native.*",
"**/styles.ts"
]
}