加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
李想 提交于 2023-08-12 11:00 . chromium 99.0.4844.88 origin init
{
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"lib": ["dom", "es2016"],
"module": "esnext",
/* Output options */
"noEmit": true,
/* Strict type-checking options */
"allowJs": false,
"strict": true,
/* tsc lint options */
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
/* These should be caught be eslint instead */
"noUnusedLocals": false,
"allowUnreachableCode": true,
/* Module Options */
"moduleResolution": "node",
"esModuleInterop": false
},
"include": ["src/**/*.ts"],
"typedocOptions": {
"entryPoints": [
"src/common/framework/",
"src/common/util/",
"src/webgpu/",
],
"exclude": [
"**/*.spec.ts",
"**/*.html.ts",
"src/*/listing.ts",
"src/webgpu/util/device_pool.ts",
],
"excludeInternal": true,
"excludeProtected": true,
"excludePrivate": true,
"listInvalidSymbolLinks": true,
"readme": "./docs/helper_index.txt",
"out": "docs/tsdoc/"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化