We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddaaea8 commit a3c1c07Copy full SHA for a3c1c07
tsconfig.json
@@ -1,17 +1,17 @@
1
{
2
"compilerOptions": {
3
+ "esModuleInterop": true,
4
+ "skipLibCheck": true,
5
"target": "ES2021",
- "lib": ["ESNext", "DOM", "ScriptHost"],
- "module": "ES2022",
6
- "moduleResolution": "node",
7
"types": ["bun-types"],
8
- "declaration": true,
9
- "outDir": "./dist",
10
"removeComments": true,
11
- "esModuleInterop": true,
12
"forceConsistentCasingInFileNames": true,
13
"strict": true,
14
- "skipLibCheck": true
+ "moduleResolution": "node",
+ "module": "ES2022",
+ "outDir": "./dist",
+ "lib": ["ESNext", "DOM", "ScriptHost"],
+ "declaration": true
15
},
16
"include": ["src/**/*"]
17
}
0 commit comments