Files
discord.js/apps/website/tsconfig.json
2025-04-28 02:23:27 +02:00

49 lines
825 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "../../tsconfig.json",
"compilerOptions": {
// Modules
"baseUrl": ".",
// Emit
"declaration": false,
"declarationMap": false,
"noEmit": true,
"outDir": "dist",
// Interop Constraints
"esModuleInterop": true,
"allowJs": true,
"incremental": true,
"skipLibCheck": true,
// Language and Environment
"jsx": "preserve",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx",
"src/**/*.cjs",
"src/**/*.mjs",
"next-env.d.ts",
".next/types/**/*.ts",
"vitest.shims.d.ts",
"__tests__/**/*.ts",
"__tests__/**/*.tsx"
],
"exclude": ["node_modules"]
}