加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
daokes 提交于 2019-02-25 13:44 . init
{
"include": [
"./src/**/*.ts"
],
"exclude": [
"./dist/"
],
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
"preserveWatchOutput": true,
"noImplicitAny": true,
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"strictNullChecks": false,
"noImplicitThis": true,
"rootDir": "./src/",
"rootDirs": [],
"allowJs": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": "",
"charset": "utf8",
"declaration": false,
"inlineSourceMap": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"diagnostics": false,
"emitBOM": false,
"forceConsistentCasingInFileNames": false,
"importHelpers": false,
"inlineSources": false,
"isolatedModules": false,
"lib": [
"esnext",
"dom"
],
"listFiles": false,
"listEmittedFiles": false,
"locale": "zh_CN",
"newLine": "LF",
"noEmit": false,
"moduleResolution": "node",
"noEmitHelpers": false,
"noEmitOnError": false,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"maxNodeModuleJsDepth": 0,
"noLib": false,
"outDir": "./dist/",
"noFallthroughCasesInSwitch": false,
"noResolve": false,
"noUnusedLocals": true,
"noUnusedParameters": false,
"paths": {},
"preserveConstEnums": false,
"pretty": true,
"removeComments": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"stripInternal": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": true,
"traceResolution": false,
"typeRoots": [
"./"
],
"types": [],
"watch": false
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化