mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
47 lines
774 B
JSON
47 lines
774 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
// Modules
|
|
"baseUrl": ".",
|
|
|
|
// Emit
|
|
"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"]
|
|
}
|