Skip to content

Commit e55051b

Browse files
committed
optimized tsconfig for type checking only
1 parent da09961 commit e55051b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tsconfig.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"compilerOptions": {
3+
"allowJs": true,
34
"allowSyntheticDefaultImports": true,
45
"esModuleInterop": true,
6+
"isolatedModules": true,
57
"jsx": "react-native",
68
"lib": ["es6"],
7-
"module": "es6",
89
"moduleResolution": "node",
910
"noEmit": true,
10-
"noImplicitAny": true,
11-
"target": "es6"
11+
"strict": true,
12+
"target": "esnext"
1213
},
1314
"exclude": ["node_modules"]
1415
}

0 commit comments

Comments
 (0)