40 lines
934 B
JSON
40 lines
934 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@lib/*": ["lib/*"]
|
|
},
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"types": ["node", "discord.js", "bun-types"],
|
|
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"alwaysStrict": true,
|
|
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"pretty": true,
|
|
"newLine": "lf",
|
|
"useDefineForClassFields": true
|
|
},
|
|
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|