AutoMod/bot/tsconfig.json
2024-07-13 19:49:06 +08:00

25 lines
525 B
JSON

{
"compilerOptions": {
// Enable latest features
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
// Bundler mode
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"outDir": "./dist",
// Interop
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Best practices
"strict": true,
"strictPropertyInitialization": false,
"skipLibCheck": true,
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}