AutoMod/bot/tsconfig.json

26 lines
525 B
JSON
Raw Normal View History

2021-10-08 23:36:46 +02:00
{
"compilerOptions": {
2024-07-13 13:49:06 +02:00
// 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"]
2021-10-08 23:36:46 +02:00
}