Skip to content

Commit 3d4afdf

Browse files
chore: add TS config
1 parent d9760ae commit 3d4afdf

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

tsconfig.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"compilerOptions": {
3-
"noEmit": true
4-
}
5-
}
3+
"target": "ESNext",
4+
"module": "ESNext",
5+
"lib": ["ESNext", "DOM"],
6+
"moduleResolution": "Node",
7+
"strict": true,
8+
"resolveJsonModule": true,
9+
"esModuleInterop": true,
10+
"noEmit": true,
11+
"skipLibCheck": true
12+
},
13+
"include": ["src"]
14+
}

0 commit comments

Comments
 (0)