forked from hyochan/dooboo-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.24 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["es2017"],
"moduleResolution": "node",
"noEmit": true,
"isolatedModules": false,
"skipLibCheck": true,
"resolveJsonModule": true,
"outDir": "lib",
"module": "es2015",
"target": "es6",
"sourceMap": true,
"allowJs": false,
"rootDirs": ["src", "stories"],
"baseUrl": "src",
"incremental": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strict": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"noUnusedLocals": false
},
"include": [
"main/**/*.ts",
"main/**/*.tsx",
"packages/**/*.ts",
"packages/**/*.tsx",
"stories/dooboo-ui/**/*.ts",
"stories/dooboo-ui/**/*.tsx",
"stories/packages/**/*.ts",
"stories/packages/**/*.tsx"
],
"exclude": ["node_modules", "**/*.test.tsx", "**/*.spec.ts"],
"files": ["environment.d.ts", "main/theme/styled.d.ts"],
"types": ["typePatches", "jest"],
"extends": "expo/tsconfig.base"
}