11 lines
308 B
JSON
11 lines
308 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.formatOnSave": true,
|
|
// Auto-fix issues with ESLint when you save code changes
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"eslint.run": "onSave",
|
|
"typescript.preferences.importModuleSpecifier": "non-relative"
|
|
}
|