summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-17 17:57:39 -0400
committerN. Taylor Mullen <[email protected]>2025-04-17 15:29:34 -0700
commit7928c1727f0b208ed34850cc89bbb36ea3dd23e5 (patch)
tree928446c3561805c0e6f89dfc2f75a856dcc9c980 /.vscode
parentd3ee91ff9203f8591ca7a7101ce9ccadeb8137be (diff)
Configure linter + prettier.
- This is based on existing expectations for TS code in Google-esc repos. - First part of the change (we have not run any linter or formatting commands). After this changeset goes in I'll do a mass changeset push. Fixes https://b.corp.google.com/issues/411384603
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json50
1 files changed, 22 insertions, 28 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 8a8daaf1..329943a4 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -1,29 +1,23 @@
{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Attach",
- "port": 9229,
- "request": "attach",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "type": "node"
- },
- {
- "type": "node",
- "request": "launch",
- "name": "Launch Program",
- "skipFiles": [
- "<node_internals>/**"
- ],
- "program": "${file}",
- "outFiles": [
- "${workspaceFolder}/**/*.js"
- ]
- }
- ]
-} \ No newline at end of file
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Attach",
+ "port": 9229,
+ "request": "attach",
+ "skipFiles": ["<node_internals>/**"],
+ "type": "node"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Launch Program",
+ "skipFiles": ["<node_internals>/**"],
+ "program": "${file}",
+ "outFiles": ["${workspaceFolder}/**/*.js"]
+ }
+ ]
+}