加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
千反田丷 提交于 2022-05-23 17:05 . update: 补充发布内容f
{
"compilerOptions": {
"target": "ES2017",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"outDir": "dist",
"declarationDir": "dist",
"declaration": true,
"declarationMap": true,
"skipDefaultLibCheck": true,
"rootDir": "src",
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost",
"es6",
"es7"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/**/*.jsx",
"tests/**/*.ts",
"tests/**/*.tsx",
],
"exclude": [
"node_modules"
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化