We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b61688 commit 2354bc5Copy full SHA for 2354bc5
3 files changed
.gitignore
@@ -0,0 +1,5 @@
1
+node_modules/
2
+bun.lock
3
+*.lock
4
+dist/
5
+.DS_Store
package.json
@@ -7,5 +7,8 @@
7
"test": "bun test",
8
"lint": "echo 'no linter configured'"
9
},
10
- "devDependencies": {}
+ "devDependencies": {
11
+ "bun-types": "latest",
12
+ "typescript": "^5.4.0"
13
+ }
14
}
tsconfig.json
@@ -0,0 +1,11 @@
+{
+ "compilerOptions": {
+ "target": "ES2022",
+ "module": "ESNext",
+ "moduleResolution": "bundler",
6
+ "strict": true,
+ "skipLibCheck": true,
+ "types": ["bun-types"]
+ },
+ "include": ["src/**/*", "test/**/*"]
+}
0 commit comments