Skip to content

Instantly share code, notes, and snippets.

@renmu123
Last active September 26, 2022 10:38
Show Gist options
  • Save renmu123/73481640e23835f5ca7666e597a6bd85 to your computer and use it in GitHub Desktop.
Save renmu123/73481640e23835f5ca7666e597a6bd85 to your computer and use it in GitHub Desktop.
vscode 配置
{
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"arrowParens": "always"
}
{
"compilerOptions": {
"target": "ESNext",
"allowSyntheticDefaultImports": false,
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
}
},
"exclude": ["node_modules", "dist"]
}
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/public": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment