Files
ThriveX-Blog/tsconfig.json
宇阳 578426488e 更新。Gitignore和next.js配置自定义构建输出目录
在next.config.mjs中将build输出目录改为next
-更新。Gitignore以反映新的输出目录
—调整了tsconfig。Json包含next/types*。为更好的类型支持
2025-12-03 21:58:01 +08:00

42 lines
696 B
JSON
Executable File

{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"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": {
"@/*": [
"./src/*"
]
},
"target": "ES2017"
},
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
"next/types/**/*.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}