1.说明
我们使用Vite
创建的项目时使用的是vue-ts
模板,所以在创建项目的时候package.json
就自带了typescript
。该依赖会编译我们的ts
文件。那么是依赖我们就可以配置它。配置内容还是照搬Vben
的,加上注释和规则来源。
2.创建配置文件
根目录下创建:tsconfig.json
文件。
2.1.原代码
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": false,
"jsx": "preserve",
"baseUrl": ".",
"allowJs": true,
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"experimentalDecorators": true,
"lib": ["dom", "esnext"],
"types": ["vite/client"],
"typeRoots": ["./node_modules/@types/", "./types"],
"incremental": true,
"noImplicitAny": false,
"skipLibCheck": true,
"paths": {
"/@/*": ["src/*"],
"/#/*": ["types/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
"mock/**/*.ts"
],
"exclude": ["node_modules", "dist", "**/*.js"]
}
这里配置玩ESLint之后会报错,说找不到vite/client
。不用管它,当你执行晚后面的ESLint-TS的时候就不会报错了。
2.2.带注释代码
{
"compilerOptions": {
// ↓指定ECMAScript目标版本,esnext为最新版本
"target": "esnext",
// ↓指定生成哪个模块系统代码,esnext为最新版本
"module": "esnext",
// ↓决定如何处理模块。
"moduleResolution": "node",
// ↓启用所有严格类型检查选项。
"strict": true,
// ↓禁止对同一个文件的不一致的引用。
"forceConsistentCasingInFileNames": true,
// ↓允许从没有设置默认导出的模块中默认导入。这并不影响代码的输出,仅为了类型检查。
"allowSyntheticDefaultImports": true,
// ↓禁用函数参数双向协变检查。
"strictFunctionTypes": false,
// ↓在 .tsx文件里支持JSX
"jsx": "preserve",
// ↓解析非相对模块名的基准目录。查看 模块解析文档了解详情。
"baseUrl": ".",
// ↓允许编译javascript文件。
"allowJs": true,
// ↓生成相应的 .map文件。
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
// ↓若有未使用的局部变量则抛错。
"noUnusedLocals": true,
// ↓若有未使用的参数则抛错。
"noUnusedParameters": true,
// ↓启用实验性的ES装饰器。
"experimentalDecorators": true,
// ↓编译过程中需要引入的库文件的列表。
"lib": ["dom", "esnext"],
// ↓要包含的类型声明文件名列表。
"types": ["vite/client"],
// ↓要包含的类型声明文件路径列表。
"typeRoots": ["./node_modules/@types/", "./types"],
"incremental": true,
// ↓在表达式和声明上有隐含的 any类型时报错。
"noImplicitAny": false,
// ↓忽略所有的声明文件( *.d.ts)的类型检查。
"skipLibCheck": true,
// ↓模块名到基于 baseUrl的路径映射的列表。查看 模块解析文档了解详情。
"paths": {
"/@/*": ["src/*"],
"/#/*": ["types/*"]
}
},
// ↓指定一个匹配列表(属于自动指定该路径下的所有ts相关文件)
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
"mock/**/*.ts"
],
// 指定一个排除列表(include的反向操作)
"exclude": ["node_modules", "dist", "**/*.js"]
}
上一章
第五章-Vite配置多环境
下一章
第七章-安装ESLint