1 Star 0 Fork 0

panzhiyue/viteblog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
panzhiyue 提交于 2023-01-05 16:45 . 添加Drag组件
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": [
"esnext",
"dom"
],
"allowJs": true,
"checkJs": false,
"removeComments": false,
"noEmit": false,
"noEmitOnError": false,
"sourceMap": true,
"strict": false,
"alwaysStrict": false,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"strictBindCallApply": false,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowUnreachableCode": true,
"skipLibCheck": true, //忽略所有的声明文件( *.d.ts)的类型检查。
"allowSyntheticDefaultImports": true, //允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
"esModuleInterop": true,
"useDefineForClassFields": true,
"jsx": "preserve",
"moduleResolution": "node",
"baseUrl": ".",
"resolveJsonModule": true,
"experimentalDecorators": true,
"types": [
"vite/client",
"unplugin-vue-define-options/macros-global"
],
"typeRoots": [
"./node_modules/@types/",
"./types"
],
"paths": {
"@/*": [
"src/*"
],
"#/*": [
"types/*"
],
}
},
"include": [
"tests/**/*",
"src/**/*",
"src/*.ts",
"types/**/*",
"build/**/*",
"vite.config.ts",
"packages/**/*",
]
// "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/panzhiyue/viteblog.git
[email protected]:panzhiyue/viteblog.git
panzhiyue
viteblog
viteblog
master

搜索帮助