Skip to content

Commit 82ba095

Browse files
authored
Create tsconfig.json
1 parent 9ffa1cf commit 82ba095

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)