mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
27 lines
541 B
JSON
27 lines
541 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/*"]
|
|
},
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "next-env.d.ts", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|