feat: first commit

This commit is contained in:
克洛伊尔 2024-11-01 14:31:23 +08:00
parent 1d6f12e9ae
commit 9f88284bdf

17
tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"noImplicitAny": false
},
"include": [
"src/**/*.ts",
],
"ts-node": {
"esm": true
}
}