7 Star 38 Fork 28

Orginone / oiocns-react

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
LoveKicher 提交于 2024-04-08 11:37 . 调整tsconfig忽略
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client", "node"],
"allowJs": true,
"skipLibCheck": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noUnusedLocals": true /* 用于检查是否有定义了但是没有使用的变量*/,
"noUnusedParameters": true /* 用于检查是否有在函数体中没有使用的参数 */,
"noEmit": true,
"jsx": "react",
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@cfg/*": ["config/*"]
},
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"typings/*.d.ts",
"config/**/*",
"vite.config.ts",
"mock/_createProductionServer.ts"
],
"exclude": [
"node_modules",
"build",
"dist",
"**/*.js",
"**/*.g.d.ts"
]
}
TypeScript
1
https://gitee.com/orginone/oiocns-react.git
git@gitee.com:orginone/oiocns-react.git
orginone
oiocns-react
oiocns-react
main

搜索帮助