You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
738 B
30 lines
738 B
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"files.eol": "\n",
|
|
"javascript.suggest.paths": false,
|
|
"typescript.suggest.paths": false,
|
|
"path-autocomplete.pathMappings": {
|
|
"@/": "${folder}/src" // alias for @/
|
|
},
|
|
"path-autocomplete.extensionOnImport": true,
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
|
},
|
|
"[scss]": {
|
|
"editor.defaultFormatter": "vscode.css-language-features"
|
|
}
|
|
}
|
|
}
|