加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 2.29 KB
一键复制 编辑 原始数据 按行查看 历史
dk 提交于 2022-07-09 01:34 . chore(all): 接入mobx、测试路由
{
"extends": "./paths.json",
"compilerOptions": {
// 基本配置
"target": "ES5", // 编译成哪个版本的 es
"module": "ESNext", // 指定生成哪个模块系统代码
"lib": [
"dom",
"dom.iterable",
"esnext"
], // 编译过程中需要引入的库文件的列表
// "allowJs": false, // 允许编译 js 文件
"jsx": "react", // .tsx 文件里支持 JSX
"isolatedModules": true, // 提供额外的一些语法检查,如文件没有模块导出会报错 允许使用类似 import React from "react" 的语法
"strict": true, // 启用所有严格类型检查选项
// 模块解析选项
"moduleResolution": "node", // 指定模块解析策略
"esModuleInterop": true, // 支持 CommonJS ES 模块之间的互操作性
"resolveJsonModule": true, // 支持导入 json 模块
"baseUrl": "./", // 根路径
// 实验性选项
"experimentalDecorators": true, // 启用实验性的ES装饰器
"emitDecoratorMetadata": true, // 给源码里的装饰器声明加上设计类型元数据
// 其他选项
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true, // 禁止对同一个文件的不一致的引用
"allowSyntheticDefaultImports": true, // 允许从没有设置默认导出的模块中默认导入
"noEmit": true, // 只想使用tsc的类型检查作为函数时(当其他工具(例如Babel实际编译)时)使用它
"sourceMap": true,
"strictNullChecks": true,
"skipLibCheck": true,
// 插件
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
]
},
"include": [
"src",
"typings",
"*.d.ts"//配置的.d.ts文件,用于定义一些 declare
],
"exclude": [
"node_modules",
"config",
"dist",
".eslintrc.js"
],
// 校验规则
"rules": {
"indent": [
true,
"spaces",
2
],
"interface-name": false,
"no-consecutive-blank-lines": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [
true,
"single"
], // 单引号
"semicolon": [
true,
"never"
], // 不加末尾分号
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化