mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
ci:去掉无太大意义格式化文件融入进vscode中,减少根目录文件,优化部分文件
This commit is contained in:
parent
ba4f20c0a3
commit
43e194e8e9
@ -1,20 +0,0 @@
|
||||
# 忽略目录
|
||||
/dist
|
||||
/build
|
||||
/tests
|
||||
/node_modules
|
||||
/public
|
||||
/src/public
|
||||
/src/static
|
||||
/src/manifest.json
|
||||
/vite.config.ts
|
||||
/unocss.config.js
|
||||
|
||||
# node 覆盖率文件
|
||||
coverage/
|
||||
|
||||
# 忽略文件
|
||||
**/*-min.js
|
||||
**/*.min.js
|
||||
**/*-min.css
|
||||
**/*.min.css
|
72
.eslintrc.cjs
Normal file
72
.eslintrc.cjs
Normal file
@ -0,0 +1,72 @@
|
||||
// 参考:https://eslint.bootcss.com/docs/rules/
|
||||
// 参考:https://blog.csdn.net/x550392236/article/details/89497202
|
||||
// 参考:https://blog.csdn.net/brokenkay/article/details/111106266
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
/**环境提供预定义的全局变量 */
|
||||
env: {
|
||||
/**Node.js全局变量和Node.js范围 */
|
||||
node: true,
|
||||
/**浏览器全局变量 */
|
||||
browser: true,
|
||||
},
|
||||
/**定义ESLint的解析器 */
|
||||
parser: 'vue-eslint-parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest',
|
||||
sourceType: 'module',
|
||||
parser: '@typescript-eslint/parser',
|
||||
},
|
||||
/**定义文件继承的子规范 */
|
||||
extends: ['eslint:recommended', 'plugin:vue/vue3-essential', 'plugin:@typescript-eslint/recommended'],
|
||||
plugins: ['vue', '@typescript-eslint'],
|
||||
rules: {
|
||||
'no-var': 'error', //要求使用 let 或 const 而不是 var
|
||||
camelcase: 'error', // 双峰驼命名格式
|
||||
indent: ['error', 4, { SwitchCase: 1 }], //代码缩进2个空格
|
||||
semi: ['error', 'always'], //行尾需要有分号
|
||||
quotes: ['error', 'single'], //强制使用一致的反勾号、双引号或单引号
|
||||
'linebreak-style': ['error', 'unix'], //强制使用一致的换行风格,"unix":\n 表示 LF , "windows":\r\n 表示 CRLF
|
||||
eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等
|
||||
'no-unused-vars': 'off',
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'warn',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
},
|
||||
], //不允许使用未使用的变量
|
||||
'@typescript-eslint/no-explicit-any': 'off', //不允许任何类型
|
||||
'@typescript-eslint/no-empty-function': 'off', //不允许空函数
|
||||
'vue/html-indent': ['error', 4], //在<template>中强制一致缩进
|
||||
'vue/singleline-html-element-content-newline': 'off', //要求在单行元素的内容之前和之后有一个换行符
|
||||
'vue/max-attributes-per-line': 'off', //执行每行的最大属性数(被 prettier 最大单行控制了暂off)
|
||||
'vue/multi-word-component-names': 'off', //要求组件名称始终为多字
|
||||
},
|
||||
globals: {
|
||||
//可以定义全局中的变量的权限(只读,可读可写)
|
||||
defineProps: 'readonly',
|
||||
defineEmits: 'readonly',
|
||||
defineExpose: 'readonly',
|
||||
withDefaults: 'readonly',
|
||||
uni: 'readonly',
|
||||
},
|
||||
ignorePatterns: [
|
||||
// # 忽略目录
|
||||
'/dist',
|
||||
'/public',
|
||||
'/src/public',
|
||||
'/src/static',
|
||||
'/node_modules',
|
||||
// # 忽略文件
|
||||
'**/*-min.js',
|
||||
'**/*.min.js',
|
||||
'**/*-min.css',
|
||||
'**/*.min.css',
|
||||
'**/*.tsbuildinfo',
|
||||
'**/*.config.js',
|
||||
'**/*.config.ts',
|
||||
'/src/manifest.json',
|
||||
],
|
||||
};
|
102
.eslintrc.js
102
.eslintrc.js
@ -1,102 +0,0 @@
|
||||
// 参考:https://eslint.bootcss.com/docs/rules/
|
||||
// 参考:https://blog.csdn.net/x550392236/article/details/89497202
|
||||
// 参考:https://blog.csdn.net/brokenkay/article/details/111106266
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
node: true, //允许运行在node环境下
|
||||
browser: true, //允许运行在浏览器环境下
|
||||
es2021: true, //允许运行es2021环境下语法
|
||||
},
|
||||
parser: 'vue-eslint-parser',
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest',
|
||||
sourceType: 'module',
|
||||
parser: '@typescript-eslint/parser',
|
||||
},
|
||||
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
|
||||
plugins: ['vue', '@typescript-eslint', 'prettier'],
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
alias: {
|
||||
map: [['@', './src']],
|
||||
extensions: ['.ts', '.js', '.jsx', '.json'],
|
||||
},
|
||||
},
|
||||
},
|
||||
globals: {
|
||||
//可以定义全局中的变量的权限(只读,可读可写)
|
||||
defineProps: 'readonly',
|
||||
defineEmits: 'readonly',
|
||||
defineExpose: 'readonly',
|
||||
withDefaults: 'readonly',
|
||||
uni: 'readonly',
|
||||
},
|
||||
rules: {
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-var': 'error', //要求使用 let 或 const 而不是 var
|
||||
'prettier/prettier': 'error',
|
||||
'vue/no-multiple-template-root': 'off',
|
||||
'no-mutating-props': 'off',
|
||||
'vue/no-v-html': 'off',
|
||||
camelcase: 'error', // 双峰驼命名格式
|
||||
// indent: ['error', 4], //代码缩进4个空格 (switch时与prettier发生冲突)
|
||||
eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等
|
||||
quotes: [
|
||||
'error',
|
||||
'single',
|
||||
{
|
||||
avoidEscape: true,
|
||||
allowTemplateLiterals: true,
|
||||
},
|
||||
], // @fixable 必须使用单引号,禁止使用双引号
|
||||
// 结尾必须有分号;
|
||||
semi: [
|
||||
'error',
|
||||
'always',
|
||||
{
|
||||
omitLastInOneLineBlock: true,
|
||||
},
|
||||
], // 结尾必须有分号;
|
||||
'vue/script-setup-uses-vars': 'error',
|
||||
'@typescript-eslint/ban-ts-ignore': 'off',
|
||||
'@typescript-eslint/explicit-function-return-type': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
'@typescript-eslint/no-var-requires': 'off',
|
||||
'@typescript-eslint/no-empty-function': 'off',
|
||||
'vue/custom-event-name-casing': 'off',
|
||||
'no-use-before-define': 'off',
|
||||
'@typescript-eslint/no-use-before-define': 'off',
|
||||
'@typescript-eslint/ban-ts-comment': 'off',
|
||||
'@typescript-eslint/ban-types': 'off',
|
||||
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'warn',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
},
|
||||
],
|
||||
'no-unused-vars': [
|
||||
'warn',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
},
|
||||
],
|
||||
'space-before-function-paren': 'off',
|
||||
'vue/attributes-order': 'off',
|
||||
'vue/v-on-event-hyphenation': 'off',
|
||||
'vue/multi-word-component-names': 'off',
|
||||
'vue/one-component-per-file': 'off',
|
||||
'vue/html-closing-bracket-newline': 'off',
|
||||
'vue/max-attributes-per-line': 'off',
|
||||
'vue/multiline-html-element-content-newline': 'off',
|
||||
'vue/singleline-html-element-content-newline': 'off',
|
||||
'vue/attribute-hyphenation': 'off',
|
||||
'vue/require-default-prop': 'off',
|
||||
},
|
||||
};
|
38
.gitignore
vendored
38
.gitignore
vendored
@ -1,34 +1,10 @@
|
||||
# 日志
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
.DS_Store
|
||||
dist
|
||||
dist-ssr
|
||||
coverage
|
||||
*.local
|
||||
.eslintcache
|
||||
|
||||
/cypress/videos/
|
||||
/cypress/screenshots/
|
||||
|
||||
# 编辑器目录和文件
|
||||
.vscode/*
|
||||
# 忽略目录
|
||||
/dist
|
||||
/node_modules
|
||||
.hbuilderx/*
|
||||
!.vscode/extensions.json
|
||||
!.vscode/settings.json
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# 忽略文件
|
||||
*.log
|
||||
**/*.tsbuildinfo
|
||||
.eslintcache
|
||||
.hbuilderx
|
||||
pnpm-lock.yaml
|
@ -1,37 +0,0 @@
|
||||
module.exports = {
|
||||
// .pellerrc 的架构 官网参考:https://prettier.io/docs/en/options.html#tab-width
|
||||
$schema: 'https://json.schemastore.org/prettierrc',
|
||||
// 一行最多 120 字符
|
||||
printWidth: 160,
|
||||
// 使用 4 个空格缩进
|
||||
tabWidth: 4,
|
||||
// 不使用 tab 缩进,而使用空格
|
||||
useTabs: false,
|
||||
// 行尾需要有分号
|
||||
semi: true,
|
||||
// 使用单引号代替双引号
|
||||
singleQuote: true,
|
||||
// 对象的 key 仅在必要时用引号
|
||||
quoteProps: 'as-needed',
|
||||
// jsx 不使用单引号,而使用双引号
|
||||
jsxSingleQuote: false,
|
||||
// 末尾使用逗号
|
||||
trailingComma: 'all',
|
||||
// 大括号内的首尾需要空格 { foo: bar }
|
||||
bracketSpacing: true,
|
||||
// 箭头函数,只有一个参数的时候,也需要括号
|
||||
arrowParens: 'always',
|
||||
// 每个文件格式化的范围是文件的全部内容
|
||||
rangeStart: 0,
|
||||
rangeEnd: Infinity,
|
||||
// 不需要写文件开头的 @prettier
|
||||
requirePragma: false,
|
||||
// 不需要自动在文件开头插入 @prettier
|
||||
insertPragma: false,
|
||||
// 使用默认的折行标准
|
||||
proseWrap: 'preserve',
|
||||
// 根据显示样式决定 html 要不要折行
|
||||
htmlWhitespaceSensitivity: 'css',
|
||||
// 换行符使用 lf
|
||||
endOfLine: 'lf',
|
||||
};
|
13
.prettierignore → .vscode/.prettierignore
vendored
13
.prettierignore → .vscode/.prettierignore
vendored
@ -1,18 +1,15 @@
|
||||
# 忽略目录
|
||||
/dist
|
||||
/build
|
||||
/tests
|
||||
/node_modules
|
||||
/public
|
||||
/src/public
|
||||
/node_modules
|
||||
/src/static
|
||||
/src/manifest.json
|
||||
|
||||
# node 覆盖率文件
|
||||
coverage/
|
||||
|
||||
# 忽略文件
|
||||
**/*-min.js
|
||||
**/*.min.js
|
||||
**/*-min.css
|
||||
**/*.min.css
|
||||
**/*.min.css
|
||||
**/*.tsbuildinfo
|
||||
/src/manifest.json
|
||||
.eslintcache
|
8
.vscode/extensions.json
vendored
8
.vscode/extensions.json
vendored
@ -1,10 +1,12 @@
|
||||
//////////////////////////////////
|
||||
// 向此工作区的用户推荐的扩展列表 //
|
||||
/////////////////////////////////
|
||||
|
||||
{
|
||||
"recommendations": [
|
||||
"Vue.volar", // Vue语言支持扩展
|
||||
"Vue.vscode-typescript-vue-plugin", // 一个TS服务器插件,使TS服务器知道*.vue文件。
|
||||
"esbenp.prettier-vscode", // 代码格式化
|
||||
"dbaeumer.vscode-eslint", //代码质量检查
|
||||
"antfu.unocss", // UnoCSS 原子化css
|
||||
"mrmlnc.vscode-autoprefixer" //将less/scss/css文件自动添加浏览器兼容前缀
|
||||
"dbaeumer.vscode-eslint" //代码质量检查
|
||||
]
|
||||
}
|
||||
|
32
.vscode/settings.json
vendored
32
.vscode/settings.json
vendored
@ -1,14 +1,28 @@
|
||||
{
|
||||
// 参考:https://blog.csdn.net/weixin_46238462/article/details/125867532
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// vscode 编辑器和插件的配置 ////////////////////////////////////////////////
|
||||
// 参考:https://blog.csdn.net/weixin_46238462/article/details/125867532 //
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode", // 定义一个默认格式化程序, 该格式化程序优先于所有其他格式化程序设置。必须是提供格式化程序的扩展的标识符。
|
||||
"editor.formatOnSave": true, //在保存时格式化文件。格式化程序必须可用,延迟后文件不能保存,并且编辑器不能关闭。
|
||||
"editor.detectIndentation": false, // 控制在基于文件内容打开文件时是否自动检测 #editor.tabSize# 和 #editor.insertSpaces#。
|
||||
"editor.tabSize": 4, // 一个制表符等于的空格数。当 #editor.detectIndentation# 打开时,将根据文件内容替代此设置。
|
||||
{
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.detectIndentation": false,
|
||||
"editor.tabSize": 4,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。
|
||||
"source.fixAll": true,
|
||||
"source.fixAll.eslint": true,
|
||||
"source.fixAll.stylelint": true
|
||||
}, // 要在保存时运行的代码操作种类。
|
||||
"files.eol": "\n" //行尾字符与.prettierrc.cjs配置一致
|
||||
},
|
||||
"files.eol": "\n",
|
||||
"eslint.enable": true,
|
||||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
// 官网参考:https://prettier.io/docs/en/options.html#tab-width //
|
||||
////////////////////////////////////////////////////////////////
|
||||
"prettier.enable": true,
|
||||
"prettier.semi": true,
|
||||
"prettier.tabWidth": 4,
|
||||
"prettier.printWidth": 160,
|
||||
"prettier.singleQuote": true,
|
||||
"prettier.ignorePath": "./.vscode/prettierignore"
|
||||
}
|
||||
|
67
README.md
67
README.md
@ -151,20 +151,57 @@ pnpm up
|
||||
npx @dcloudio/uvm 3.7.2.20230217-alpha
|
||||
```
|
||||
|
||||
## Git 贡献提交规范
|
||||
## Gitee 参与贡献
|
||||
|
||||
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
|
||||
1. Fork 本仓库
|
||||
2. 新建 Feat_xxx 分支
|
||||
3. 提交代码
|
||||
4. 新建 Pull Request
|
||||
|
||||
- `feat` 增加新功能
|
||||
- `fix` 修复问题/BUG
|
||||
- `style` 代码风格相关无影响运行结果的
|
||||
- `perf` 优化/性能提升
|
||||
- `refactor` 重构
|
||||
- `revert` 撤销修改
|
||||
- `test` 测试相关
|
||||
- `docs` 文档/注释
|
||||
- `chore` 依赖更新/脚手架配置修改等
|
||||
- `workflow` 工作流改进
|
||||
- `ci` 持续集成
|
||||
- `types` 类型定义文件更改
|
||||
- `wip` 开发中
|
||||
## [Gitee 贡献提交规范](https://www.conventionalcommits.org/zh-hans/v1.0.0/)
|
||||
|
||||
### 提交类型
|
||||
|
||||
| 提交类型 | 标题 | 描述 |
|
||||
| ---------- | ------------------ | ------------------------------------------------------------------------------------- |
|
||||
| `feat` | 特征 | 新功能、新特性 |
|
||||
| `fix` | Bug 修复 | bug 修复 |
|
||||
| `docs` | 文档 | 仅文档更改 |
|
||||
| `style` | 风格 | 不影响代码含义的更改(空格、格式、缺少分号等) |
|
||||
| `refactor` | 代码重构 | 重构,在不影响代码内部行为,功能下的代码修改 |
|
||||
| `perf` | 性能改进 | 更改代码,以提高性能 |
|
||||
| `test` | 测试 | 添加缺失的测试或纠正现有的测试 |
|
||||
| `build` | 构建 | 影响构建系统或外部依赖项的更改(示例范围:gulp、broccoli、npm) |
|
||||
| `ci` | 持续集成 | 对我们的 CI 配置文件和脚本的更改(示例范围:Travis、Circle、BrowserStack、SauceLabs) |
|
||||
| `chore` | 其他文件修改 | 不修改 src 或测试文件的其他更改 |
|
||||
| `revert` | 还原 | 恢复之前的提交 |
|
||||
| `release` | 发布新版本 | \- |
|
||||
| `workflow` | 工作流相关文件修改 | \- |
|
||||
|
||||
### 提交别名
|
||||
|
||||
| 提交类型 | 映射到 | 标题 | 描述 |
|
||||
| ------------------ | ------- | -------- | -------------------------- |
|
||||
| `initial` | `feat` | 最初的 | 初始提交 |
|
||||
| `dependencies` | `fix` | 依赖项 | 更新依赖项 |
|
||||
| `peerDependencies` | `fix` | 对等依赖 | 更新对等依赖项 |
|
||||
| `devDependencies` | `chore` | 开发依赖 | 更新开发依赖 |
|
||||
| `metadata` | `fix` | 元数据 | 更新元数据(package.json) |
|
||||
|
||||
### 快捷别名提示
|
||||
|
||||
1. resolve a conflict:解决冲突
|
||||
2. merge branch:合并分支
|
||||
3. feat: [...] : 添加的新功能说明
|
||||
4. fix: [...] : 修复的 bug 说明
|
||||
5. initial project:初始化项目
|
||||
6. style: [...] : 修改的样式范围
|
||||
7. perf:[...] : 优化的范围
|
||||
8. release : 发布新版本
|
||||
9. docs: 文档修改
|
||||
10. refactor: 代码重构
|
||||
11. revert: 还原之前的版本
|
||||
12. dependencies: 依赖项修改
|
||||
13. devDependencies: 开发依赖修改
|
||||
14. review:复习,回顾
|
||||
15. strengthen: 加强,巩固
|
10
package.json
10
package.json
@ -30,8 +30,7 @@
|
||||
"build:quickapp-webview": "uni build -p quickapp-webview",
|
||||
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
|
||||
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
|
||||
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,ts}\" --fix",
|
||||
"format": "prettier --write src/",
|
||||
"eslint": "eslint --max-warnings 0 \"src/**/*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}\" --fix",
|
||||
"prepare": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -56,8 +55,7 @@
|
||||
"luch-request": "^3.0.8",
|
||||
"pinia": "^2.0.33",
|
||||
"qs": "^6.11.1",
|
||||
"vue": "^3.2.47",
|
||||
"vue-i18n": "^9.2.2"
|
||||
"vue": "^3.2.47"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@dcloudio/types": "^3.2.11",
|
||||
@ -75,8 +73,6 @@
|
||||
"@unocss/preset-icons": "^0.46.5",
|
||||
"autoprefixer": "^10.4.13",
|
||||
"eslint": "^8.35.0",
|
||||
"eslint-config-prettier": "^8.7.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"eslint-plugin-vue": "^9.9.0",
|
||||
"husky": "^8.0.3",
|
||||
"lint-staged": "^13.1.2",
|
||||
@ -96,7 +92,7 @@
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,jsx,vue,ts,tsx}": [
|
||||
"prettier --write",
|
||||
"eslint --max-warnings 0 --fix",
|
||||
"git add"
|
||||
]
|
||||
}
|
||||
|
@ -1,25 +1,52 @@
|
||||
{
|
||||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "vite.config.*", "vitest.config.*", "cypress.config.*"], // 指定要包含在编译中的文件匹配列表
|
||||
"exclude": [], // 指定要从编译中排除的文件列表
|
||||
"compilerOptions": {
|
||||
"target": "ESNext", // 目标语言的版本
|
||||
"useDefineForClassFields": true, //发出符合ECMAScript标准的类字段
|
||||
"baseUrl": "./", // 指定基目录以解析非相对模块名
|
||||
// "rootDir": "./src", // 在源文件中指定根文件夹
|
||||
// "outDir": "./dist", // 为所有发出的文件指定一个输出文件夹
|
||||
"target": "ESNext", // 编译出目标语言版本
|
||||
"module": "ESNext", // 生成代码的模板标准
|
||||
"moduleResolution": "Node", //指定TypeScript如何从给定的模块说明符中查找文件
|
||||
"strict": true, // 开启所有严格的类型检查
|
||||
"jsx": "preserve", //指定生成什么JSX代码。
|
||||
"resolveJsonModule": true, //是否解析 JSON 模块
|
||||
"isolatedModules": true, // 确保每个文件都可以安全地转译,而不依赖于其他导入。
|
||||
"esModuleInterop": true, // 发出额外的JavaScript以简化对导入Common/S模块的支持。这使得allowsyntheticdefaulultimports类型兼容。
|
||||
"moduleResolution": "node", // 指定TypeScript如何从给定的模块说明符查找文件
|
||||
"esModuleInterop": true, // 允许export=导出,由import from 导入
|
||||
"lib": ["ESNext", "DOM", "ScriptHost"], // TS需要引用的库
|
||||
"types": ["@dcloudio/types", "@types/node"], // 指定要包含的类型包名,而不需要在源文件中引用
|
||||
"removeComments": true, // 删除注释
|
||||
"types": ["@dcloudio/types"],
|
||||
"paths": { "@/*": ["./src/*"] }, //指定一组条目,它们将导入重新映射到其他查找位置。
|
||||
"lib": ["ESNext", "DOM"], // TS需要引用的库
|
||||
"skipLibCheck": true, // 跳过所有.d.ts文件的类型检查
|
||||
"noEmit": true, // 从编译中禁用发射文件。
|
||||
"noEmitOnError": true, //有错误时不进行编译
|
||||
"forceConsistentCasingInFileNames": true, //是否区分文件系统大小写规则
|
||||
"paths": { "@/*": ["./src/*"] }, //指定一组条目,它们将导入重新映射到其他查找位置
|
||||
"pretty": true, // 在输出中启用颜色和格式,使编译器错误更容易阅读
|
||||
"newLine": "lf", // 设置发出文件的换行符
|
||||
// "sourceMap": true, //为发出的JavaScript文件创建源映射文件。
|
||||
// "declaration": true, // 从项目中的TypeScript和JavaScript文件生成.d.ts文件
|
||||
// "declarationMap": true, // 为d.ts文件创建源地图
|
||||
|
||||
/* 严格检查选项 */
|
||||
"strict": true, // 开启所有严格的类型检查
|
||||
"alwaysStrict": true, // 在代码中注入'use strict'
|
||||
"noImplicitAny": true, // 不允许隐式的any类型
|
||||
"noImplicitThis": true, // 不允许this有隐式的any类型
|
||||
"strictNullChecks": true, // 在进行类型检查时,请考虑null和undefined。
|
||||
"strictBindCallApply": true, // 检查bind、call和apply方法的参数是否与原始函数匹配。
|
||||
"strictFunctionTypes": true, // 在给函数赋值时,要确保参数和返回值是子类型兼容的。
|
||||
"strictPropertyInitialization": true, // 类的实例属性必须初始化
|
||||
|
||||
/* 额外检查 */
|
||||
"noUnusedLocals": true, //是否检查未使用的局部变量
|
||||
"noUnusedParameters": true, //是否检查未使用的参数
|
||||
"noImplicitReturns": true, //检查函数是否不含有隐式返回值
|
||||
"noImplicitOverride": true, //是否检查子类继承自基类时,其重载的函数命名与基类的函数不同步问题
|
||||
"noFallthroughCasesInSwitch": true, //检查switch中是否含有case没有使用break跳出
|
||||
"noUncheckedIndexedAccess": true, //是否通过索引签名来描述对象上有未知键但已知值的对象
|
||||
"noPropertyAccessFromIndexSignature": false, //是否通过" . “(obj.key) 语法访问字段和"索引”( obj[“key”]), 以及在类型中声明属性的方式之间的一致性
|
||||
|
||||
/* 实验选项 */
|
||||
"experimentalDecorators": true, //是否启用对装饰器的实验性支持,装饰器是一种语言特性,还没有完全被 JavaScript 规范批准
|
||||
"emitDecoratorMetadata": true //为装饰器启用对发出类型元数据的实验性支持
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||||
"references": [{ "path": "./tsconfig.node.json" }] // 引用的项目。要求TypeScript 3.0或更高版本。
|
||||
"emitDecoratorMetadata": true, //为装饰器启用对发出类型元数据的实验性支持
|
||||
|
||||
/* 高级选项 */
|
||||
"forceConsistentCasingInFileNames": true, //是否区分文件系统大小写规则
|
||||
"extendedDiagnostics": false, //是否查看 TS 在编译时花费的时间
|
||||
"noEmitOnError": true, //有错误时不进行编译
|
||||
"resolveJsonModule": true //是否解析 JSON 模块
|
||||
// "incremental": true // 增量编译
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"allowSyntheticDefaultImports": true
|
||||
},
|
||||
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user