Files
CordysCRM/frontend/tsconfig.json
2024-12-25 18:11:07 +08:00

39 lines
998 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"exclude": [
// 排除掉哪些类库
"packages/**/node_modules",
"packages/**/dist/**"
],
"compilerOptions": {
"allowJs": true, // 允许编译器编译JSJSX文件
"noEmit": true,
"target": "esnext", // 使用es最新语法
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true, // 允许异步导入模块,配合自动导入插件使用
"module": "esnext", // 使用ES模块语法
"moduleResolution": "node",
"strict": true, // 严格模式
"jsx": "preserve",
"sourceMap": true, // 代码映射
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": [
"esnext",
"dom"
],
"skipLibCheck": true, // 跳过node依赖包语法检查
"types": [
"node",
// "vite-plugin-svg-icons/client"
], // 手动导入TS类型声明文件
"paths": {
"#/*": [
"/types/*"
],
}
},
"include": [
"packages/**/*"
],
}