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