1 Star 0 Fork 2

丹丹 / ReactTypescriptAntdBackstage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
YHF7 提交于 2019-09-12 17:34 . store
{
"compilerOptions": {
"baseUrl": "src",// 设置路径获取地址
"paths": {
"@/*": ["./*"] // 设置快捷路径
},
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
],
"rules": {
"no-console": false,
"no-debugger": false,
"indent": [true, "spaces", 2], // 缩进
"no-consecutive-blank-lines": [ // 空行不超过两行
true,
2
],
"jsx-no-lambda": false,
// 检查对象中键的排序
"object-literal-sort-keys": false,
// 倒入(import)源的排序规则
"ordered-imports": true
},
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts"
]
}
}
1
https://gitee.com/danwbj/ReactTypescriptAntdBackstage.git
git@gitee.com:danwbj/ReactTypescriptAntdBackstage.git
danwbj
ReactTypescriptAntdBackstage
ReactTypescriptAntdBackstage
master

搜索帮助