We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0724153 commit 341a52fCopy full SHA for 341a52f
1 file changed
tsconfig.json
@@ -1,18 +1,20 @@
1
{
2
"compilerOptions": {
3
- "rootDir": "src",
4
- "lib": [
5
- "ES2023"
6
- ],
+ "rootDir": "./src",
+ "outDir": "./dist",
+ "target": "ES2023",
7
"types": [
8
"node"
9
],
10
- "module": "nodenext",
11
- "moduleResolution": "nodenext",
12
- "noEmit": true,
13
- "skipLibCheck": true,
+ "lib": [
+ "DOM",
+ "ESNext"
+ ],
+ "declaration": true,
14
"isolatedModules": true,
15
- "useDefineForClassFields": true
+ "skipLibCheck": true,
16
+ "module": "nodenext",
17
+ "moduleResolution": "nodenext"
18
},
19
"include": [
20
"src"
0 commit comments