- 新增 .editorconfig、.eslintrc、.gitignore 配置文件 - 添加管理员文章管理页面配置和功能实现 - 添加经销商申请注册页面配置和功能实现 - 添加经销商银行卡管理页面配置和功能实现 - 添加经销商客户管理页面配置和功能实现 - 添加用户地址管理页面配置和功能实现 - 添加用户聊天消息页面配置和功能实现 - 添加用户礼品管理页面配置和功能实现
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"lib": ["es2018", "dom", "dom.iterable"],
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "lib",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"types"
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/utils/*": ["./src/utils/*"],
|
|
"@/assets/*": ["./src/assets/*"],
|
|
"@/api/*": ["./src/api/*"],
|
|
"@/hooks/*": ["./src/hooks/*"],
|
|
"@/config/*": ["./config/*"],
|
|
"@/types/*": ["./types/*"]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["./src", "./types"],
|
|
"compileOnSave": false
|
|
}
|