mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-04 14:17:09 +00:00
24 lines
786 B
JSON
24 lines
786 B
JSON
{
|
|
"search.exclude": {
|
|
"**/.sst": true
|
|
},
|
|
"task.allowAutomaticTasks": true,
|
|
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"debug.openDebug": "neverOpen",
|
|
"problems.autoReveal": true,
|
|
"terminal.integrated.hideOnStartup": "always",
|
|
"terminal.integrated.defaultProfile.windows": "Command Prompt",
|
|
"terminal.integrated.inheritEnv": false,
|
|
"jestrunner.configPath": "jest.unit.config.cjs",
|
|
"compile-hero.disable-compile-files-on-did-save-code": true,
|
|
"tasks": {
|
|
"label": "lint on open",
|
|
"type": "shell",
|
|
"command": "npm run lint",
|
|
"runOn": "folderOpen"
|
|
}
|
|
}
|