my-bitburner/.vscode/settings.json

25 lines
706 B
JSON
Raw Normal View History

{
// Linter Settings
"typescript.validate.enable": false,
"javascript.validate.enable": false,
"eslint.validate": ["typescript", "typescriptreact"],
"eslint.workingDirectories": ["./src"],
"editor.codeActionsOnSave": {"source.fixAll.eslint": true},
2022-08-16 23:18:41 +09:00
"bitburner.authToken": "MOG9GEp4MGcw4aupPiqC6C9kd8jtFR2JgWcuS9JMyJjYfRCv0sqWdoB1H0G7HMQY",
"bitburner.fileWatcher.enable": true,
// Bitburner Extension Settings
"bitburner.scriptRoot": "./dist/",
2022-08-16 23:18:41 +09:00
// Autosave Settings
"files.autoSave": "off",
// Autosnippet settings
"autoSnippet.snippets": [
{
"pattern": "**/*.ts",
"snippet": "ns-template"
},
],
}