summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKirill Rogovoy <[email protected]>2021-07-20 21:24:52 +0300
committerKirill Rogovoy <[email protected]>2021-07-20 21:24:52 +0300
commit5f4611d65e40eae3ca6191a15f68d69ea5a1c4cb (patch)
tree273dfc086444533d86d580961c92ba8d14781a67 /tsconfig.json
parentf0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (diff)
WIP
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json30
1 files changed, 14 insertions, 16 deletions
diff --git a/tsconfig.json b/tsconfig.json
index d4df8c5..4fa631c 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,21 +1,19 @@
{
"compilerOptions": {
- "allowJs": false,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "jsx": "react-native",
- "module": "es2015",
- "moduleResolution": "node",
- "noImplicitAny": false,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "sourceMap": true,
- "target": "esnext",
- "lib": ["esnext", "dom"],
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
"skipLibCheck": true,
- "resolveJsonModule": true
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve"
},
- "exclude": ["node_modules"],
- "include": ["App.js", "app", "test", "storybook"]
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
+ "exclude": ["node_modules"]
}