aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.vscode/settings.json
blob: 23b6ae371de0f95937ec9ba5355aca9122403dc0 (plain) (blame)
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
{
  "typescript.tsdk": "node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib",
  "typescript.enablePromptUseWorkspaceTsdk": true,
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ],
  "eslint.packageManager": "pnpm",
  "debug.javascript.unmapMissingSources": true,
  "go.lintTool": "golangci-lint",
  "files.associations": {
    "libturbo.h": "c",
    "turbo.json": "jsonc"
  },
  "[cram]": {
    "editor.trimAutoWhitespace": false,
    "files.trimFinalNewlines": false,
    "files.insertFinalNewline": false,
    "files.trimTrailingWhitespace": false
  },
  "search.exclude": {
    "crates/turbopack-tests/tests/snapshot/**": true
  }
}