mirror of https://github.com/requarks/wiki
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.
24 lines
786 B
24 lines
786 B
{
|
|
"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"
|
|
}
|
|
}
|