Skip to content

Commit 6b88e7b

Browse files
Create tsconfig.json
1 parent 3b695d7 commit 6b88e7b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2022",
4+
"module": "ESNext",
5+
"moduleResolution": "bundler",
6+
"lib": ["ES2022"],
7+
"jsx": "react-jsx",
8+
"strict": true,
9+
"skipLibCheck": true,
10+
"esModuleInterop": true,
11+
"allowSyntheticDefaultImports": true,
12+
"resolveJsonModule": true,
13+
"noEmit": true,
14+
"types": ["bun-types"],
15+
"allowImportingTsExtensions": false,
16+
"noUnusedLocals": false,
17+
"noUnusedParameters": false
18+
},
19+
"include": ["src/**/*"]
20+
}

0 commit comments

Comments
 (0)