md5-fight-plus
Version:
15 lines • 455 B
JSON
{
"compilerOptions": {
"target": "es6", // 或其他目标版本
"module": "commonjs", // 或其他模块格式
"esModuleInterop": true, // 启用 ES 模块互操作性
"outDir": "./dist", // 输出目录
"skipLibCheck": true, // 跳过库文件的类型检查
"paths": {
"@/*": ["./src/*"]
},
"strict": false, // 启用严格模式
// 其他选项...
},
"exclude": ["node_modules"] // 排除 node_modules
}