4 Star 0 Fork 0

关康雨/闪电音乐前端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["esnext", "DOM"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"allowJs": true,
"esModuleInterop": true,
"sourceMap": true,
"noLib": false,
"baseUrl": "./",
// 路劲映射,相对于baseUrl
"paths": {
"@/*": ["src/*"]
},
// 组件名称defineOptions类型
"types": ["vite/client","node:url"],
/* Linting */
"strict": true,
"noUnusedLocals": true, // 未使用到变量是否报错
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true /* 允许默认导入 */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */
},
"include": [
"src/**/*.ts",
// 自动导入TS类型声明文件引入
"src/**/*.d.ts",
"src/types/**/*.d.ts",
"src/**/*.vue",
"vite.config.ts"
],
"exclude": ["node_modules", "dist", "**/*.js"]
// "references": [{ "path": "./tsconfig.node.json" }]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guangkangyu/music.git
git@gitee.com:guangkangyu/music.git
guangkangyu
music
闪电音乐前端
master

搜索帮助