training_data/apps/web/tsconfig.node.json

17 lines
474 B
JSON
Raw Normal View History

2024-07-11 11:00:51 +08:00
{
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
2024-12-30 08:26:40 +08:00
"noUnusedLocals": false, // 关闭未使用局部变量的警告
"noUnusedParameters": false, // 关闭未使用函数参数的警告
2024-07-11 11:00:51 +08:00
"strict": true,
"noEmit": true
},
"include": [
"vite.config.ts"
]
}