We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffa1cf commit 82ba095Copy full SHA for 82ba095
1 file changed
tsconfig.json
@@ -0,0 +1,18 @@
1
+{
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "lib": ["ES2020"],
7
+ "outDir": "./dist",
8
+ "strict": true,
9
+ "noFallthroughCasesInSwitch": true,
10
+ "esModuleInterop": true,
11
+ "allowSyntheticDefaultImports": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "resolveJsonModule": true,
14
+ "skipLibCheck": true,
15
+ "allowJs": true
16
+ },
17
+ "exclude": ["node_modules", "dist"]
18
+}
0 commit comments