@belloai/bello-tsconfig
v0.0.10
Published
Bello 前端项目推荐的 typescript 配置
Downloads
2
Keywords
Readme
Bello Typescript Config
该 tsconfig.json 适用于 vue 项目
安装
yarn add @belloai/bello-tsconfig -D
or npm i @belloai/bello-tsconfig --dev
使用
// ./tsconfig.json
{
"extends": "@belloai/bello-tsconfig",
"compilerOptions": {
"baseUrl": "."
},
"include": ["src"]
}
// ./settings.json
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"typescript.tsdk": "node_modules/typescript/lib", //支持css 类型检测配置
"typescript.enablePromptUseWorkspaceTsdk": true //支持css 类型检测配置
}