Files

44 lines
768 B
JSON
Raw Permalink Normal View History

2026-04-29 19:06:38 +08:00
{
2026-05-06 17:22:50 +08:00
"$schema": "https://json.schemastore.org/tsconfig",
2026-04-29 19:06:38 +08:00
"compilerOptions": {
2026-05-06 17:22:50 +08:00
"paths": {
"@/*": [
"./*"
]
},
2026-04-29 19:06:38 +08:00
"target": "ES2017",
2026-05-06 17:22:50 +08:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2026-04-29 19:06:38 +08:00
"allowJs": true,
"skipLibCheck": true,
2026-05-06 17:22:50 +08:00
"strict": false,
2026-04-29 19:06:38 +08:00
"noEmit": true,
2026-05-06 17:22:50 +08:00
"incremental": true,
2026-04-29 19:06:38 +08:00
"module": "esnext",
2026-05-06 17:22:50 +08:00
"esModuleInterop": true,
2026-04-29 19:06:38 +08:00
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
2026-05-06 17:22:50 +08:00
"jsx": "preserve",
2026-04-29 19:06:38 +08:00
"plugins": [
{
"name": "next"
}
2026-05-06 17:22:50 +08:00
]
2026-04-29 19:06:38 +08:00
},
"include": [
"next-env.d.ts",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
2026-05-06 17:22:50 +08:00
"**/*.mts",
"**/*.ts",
"**/*.tsx"
2026-04-29 19:06:38 +08:00
],
2026-05-06 17:22:50 +08:00
"exclude": [
"node_modules"
]
2026-04-29 19:06:38 +08:00
}