-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathsettings.json
More file actions
27 lines (27 loc) · 1.17 KB
/
settings.json
File metadata and controls
27 lines (27 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"vscode/extension/out": false, // set this to true to hide the "out" folder with the compiled JS files
"vscode/extension/dist": false, // set this to true to hide the "dist" folder with the compiled JS files
"vscode/react/node_modules": false,
"vscode/react/dist": false
},
"search.exclude": {
"vscode/extension/out": true, // set this to false to include "out" folder in search results
"vscode/extension/dist": true, // set this to false to include "dist" folder in search results
"vscode/react/node_modules": true,
"vscode/react/dist": true
},
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off",
// Playwright configuration
// Python configuration to ensure consistent environment
"python.defaultInterpreterPath": "${env:VIRTUAL_ENV}/bin/python",
"python.terminal.activateEnvironment": true,
"terminal.integrated.env.osx": {
"PATH": "${env:VIRTUAL_ENV}/bin:${env:PATH}"
},
"terminal.integrated.env.linux": {
"PATH": "${env:VIRTUAL_ENV}/bin:${env:PATH}"
}
}