refactor: Update Dockerfile and TypeScript configurations for improved build process

This commit is contained in:
2025-04-25 00:10:40 +08:00
parent 72a59bbcdd
commit a324815788
4 changed files with 36 additions and 28 deletions

View File

@@ -1,10 +1,11 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"module": "CommonJS",
"moduleResolution": "Node",
"lib": ["ES2020"],
"outDir": "dist",
"rootDir": ".",
"rootDir": "src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
@@ -12,11 +13,10 @@
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"moduleResolution": "node"
"sourceMap": true
},
"include": [
"src/**/*",
"deploy-commands.ts"
"src/**/*"
],
"exclude": [
"node_modules",