Chore: say hello to bun

This commit is contained in:
SukkaW
2023-11-15 12:13:52 +08:00
parent 0e8bfc0def
commit 37257958c2
10 changed files with 113 additions and 1895 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"composite": true,
"target": "esnext",
"moduleDetection": "force",
"module": "esnext",
"moduleResolution": "bundler",
"types": ["bun-types"],
"allowImportingTsExtensions": true,
"allowJs": true,
"noEmit": true,
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}