PandaWiki/web/app/tsconfig.json

35 lines
670 B
JSON
Raw Permalink Normal View History

2025-05-22 22:21:05 +08:00
{
"compilerOptions": {
"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,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"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
}