加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 899 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hamm 提交于 2024-03-02 22:25 . fix(bugs): 修复了一些已知的BUG
{
"compilerOptions": {
"alwaysStrict": true, //严格模式
"removeComments": true, //自动删除注释
"noImplicitAny": true, //不允许隐式的any
"target": "ESNext", //编译目标
"module": "CommonJS", //使用module目标
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"node"
],
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"tests/**/*.ts",
"src/index.ts"
],
"exclude": [
"node_modules"
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化