27 lines
565 B
Plaintext
27 lines
565 B
Plaintext
{
|
|
"folders": [{
|
|
"path": ".."
|
|
}],
|
|
"settings": {
|
|
// Linter Settings
|
|
"typescript.validate.enable": false,
|
|
"javascript.validate.enable": false,
|
|
"eslint.validate": ["typescript", "typescriptreact"],
|
|
"eslint.workingDirectories": ["./src"],
|
|
"editor.codeActionsOnSave": {"source.fixAll.eslint": true},
|
|
|
|
// Bitburner Extension Settings
|
|
"bitburner.scriptRoot": "./dist/",
|
|
|
|
// Autosave Settings
|
|
"files.autoSave": "off",
|
|
|
|
// Autosnippet settings
|
|
"autoSnippet.snippets": [
|
|
{
|
|
"pattern": "**/*.ts",
|
|
"snippet": "ns-template"
|
|
},
|
|
],
|
|
}
|
|
} |