Kord/apps/bot/tsconfig.json

21 lines
436 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"rootDir": "./src",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"types": ["jest", "node"],
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"]
}