1 Star 0 Fork 6

宋开心/archetype-backend-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tsconfig.json 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "node",
"allowImportingTsExtensions": true, // 允许导入资源时使用扩展名
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"noEmit": true,
"importHelpers": true, // 不让同样的辅助函数重复的出现在多个文件中
"allowSyntheticDefaultImports": true, // 允许对不包含默认导出的模块使用默认导入。
"types": [
"node",
"vite/client",
"jest",
"pinia-plugin-persist",
"element-plus/global"
],
"baseUrl": ".", // 非相对模块的导入可以相对于baseUrl或通过下文会讲到的路径映射来进行解析
"paths": {
"@/*": ["src/*"]
}
},
"ts-node": {
"esm": true
},
"include": ["src/**/*", "test/**/*"],
"references": [{ "path": "./tsconfig.node.json" }]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/songtonngxue/archetype-backend-template.git
git@gitee.com:songtonngxue/archetype-backend-template.git
songtonngxue
archetype-backend-template
archetype-backend-template
develop

搜索帮助