mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
26 lines
560 B
JSON
26 lines
560 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"contentlayer/generated": ["./.contentlayer/generated"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", ".next/types/**/*.ts", ".contentlayer/generated"],
|
|
"exclude": ["node_modules"]
|
|
}
|