Initial commit

This commit is contained in:
Kyle Fang
2025-06-29 10:02:42 +08:00
commit 966f4d1e03
9 changed files with 162 additions and 0 deletions

24
tsconfig.json Normal file
View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"outDir": "./dist",
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"allowImportingTsExtensions": true,
"target": "es2022",
"allowJs": true,
"sourceMap": true,
"inlineSources": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"incremental": true,
"skipLibCheck": true,
},
"include": [
"./src"
],
"exclude": [
"**/node_modules",
]
}