1 Star 4 Fork 1

刘坤/NeteaseCloud-WebMusicApp-master

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
kun.liu 提交于 2024-11-29 17:33 . fix: hash
{
"compilerOptions": {
"target": "ESNext", // 将代码编译为最新版本的 JS
"useDefineForClassFields": true, // 使用 Object.defineProperty 定义 class 中的属性,而非使用 obj.key = value 的形式定义属性
"module": "ESNext", // 使用 ES Module 格式打包编译后的文件
"moduleResolution": "Node", // 使用 Node 的模块解析策略
"strict": false, // 启用所用严格的类型检查
"jsx": "preserve", // 保留原始的 JSX 代码,不进行编译
"sourceMap": true, // 生成 sourceMap 文件
"resolveJsonModule": true, // 允许引入 JSON 文件
"isolatedModules": true, // 该属性要求所有文件都是 ES Module 模块。
"esModuleInterop": true, // 允许使用 import 引入使用 export = 导出的内容
"lib": ["ESNext", "DOM"], // 引入 ES 最新特性和 DOM 接口的类型定义
"skipLibCheck": true, // 跳过对 .d.ts 文件的类型检查
"importHelpers": true,
"experimentalDecorators": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
// "noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
// "types": ["element-plus/global"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }],
"exclude": ["node_modules", "dist", "**/*.js"]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liukun-uzi/netease-cloud-web-music-app-master.git
git@gitee.com:liukun-uzi/netease-cloud-web-music-app-master.git
liukun-uzi
netease-cloud-web-music-app-master
NeteaseCloud-WebMusicApp-master
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385