PandaWiki/web/app/tsconfig.json

30 lines
560 B
JSON
Raw Permalink Normal View History

2025-05-22 22:21:05 +08:00
{
2025-11-06 15:37:56 +08:00
"extends": "../tsconfig.base.json",
2025-05-22 22:21:05 +08:00
"compilerOptions": {
2025-11-06 15:37:56 +08:00
/* Next.js */
2025-05-22 22:21:05 +08:00
"target": "ES2017",
2025-08-29 18:05:00 +08:00
"lib": ["dom", "dom.iterable", "esnext"],
2025-05-22 22:21:05 +08:00
"allowJs": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"paths": {
2025-08-29 18:05:00 +08:00
"@/*": ["./src/*"]
2025-05-22 22:21:05 +08:00
}
},
"include": [
2025-08-29 18:22:11 +08:00
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
2025-08-29 17:54:02 +08:00
"new-types.d.ts",
"next-env.d.ts",
2025-08-29 18:22:11 +08:00
"dist/types/**/*.ts"
2025-08-29 18:05:00 +08:00
],
"exclude": ["node_modules"]
2025-05-22 22:21:05 +08:00
}