1 Star 0 Fork 0

Qiuyun / qiuyundev-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
buqiyuan 提交于 2024-03-22 16:20 . feat(store): [sse] add emmiter
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
/* Bundler mode | 编译相关 */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"removeComments": true,
"useUnknownInCatchVariables": false, //是否允许在 catch 语句中使用 unknown 类型的变量。
"declarationMap": false, //是否为每个生成的 .d.ts 文件生成源映射。
"inlineSources": false, //是否将源文件的内容嵌入到源映射中。
"skipLibCheck": true, //跳过所有的 *.d.ts 文件的类型检查。
"preserveWatchOutput": true, //在 TypeScript 的观察模式下保留控制台输出。
"experimentalDecorators": true, //启用对装饰器的实验性支持。
"noLib": false, //不排除默认库文件(比如 lib.d.ts)的类型检查。
"allowSyntheticDefaultImports": true,
"jsxImportSource": "vue",
"allowJs": true,
/* Linting | 代码质量相关 */
"strict": true,
"useDefineForClassFields": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"noUnusedParameters": false,
"strictFunctionTypes": false,
"noImplicitAny": false,
"lib": ["dom", "esnext", "DOM.Iterable"],
"types": ["node", "vite/client"],
"paths": {
"@/*": ["src/*"]
}
},
"include": [
"**/*.d.ts",
"mock/**/*",
"mocks/**/*",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
"vite.config.ts"
],
"exclude": ["node_modules", "dist", "**/*.js", "**/*.md", "src/**/*.md"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
1
https://gitee.com/qiuqy/qiuyundev-vue.git
git@gitee.com:qiuqy/qiuyundev-vue.git
qiuqy
qiuyundev-vue
qiuyundev-vue
main

搜索帮助