1 Star 0 Fork 0

ievg-template/electron-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
manoo 提交于 2021-07-05 21:20 . init
{
"compilerOptions": {
"target": "ES2016" /* 编译结果使用的版本标准: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"module": "commonjs" /* 编译结果使用的模块化标准: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"lib": ["ESNext", "DOM"] /* 在写ts的时候支持的环境,默认是浏览器环境。如需要支持node,安装@type/node */,
"jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
"sourceMap": true,
"strict": true,
"declaration": true,
"removeComments": true /* 编译结果把ts的注释移除掉 */,
"esModuleInterop": true /* es6的模块化和非es6的模块化标准互通 */,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"paths": {
"@src/*": ["./app/renderer/*"] // webpack 配置别名,但在TS中会报红找不到,所以tslint也需要配置
},
"moduleResolution": "node"
},
"exclude": ["dist", "node_modules"], // 这里需要排除掉 dist 目录和 node_modules 目录,不进行检查
"include": ["app/**/*.ts", "app/**/*.tsx", "app/**/*.d.ts", "node_modules/electron-store/*.d.ts"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/ievg-template/electron-template.git
[email protected]:ievg-template/electron-template.git
ievg-template
electron-template
electron-template
master

搜索帮助