๐Ÿ“ฆ astral-sh / ruff-vscode

๐Ÿ“„ tsconfig.json ยท 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18{
  "compilerOptions": {
    "module": "commonjs",
    "target": "ES2020",
    "lib": ["ES2020"],
    "sourceMap": true,
    "rootDir": "src",
    "strict": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "noUnusedParameters": true,
    // Workaround for a type error within `vscode-jsonrpc`.
    // See https://github.com/microsoft/vscode-languageserver-node/issues/1590
    "skipLibCheck": true
  },
  "include": ["src/**/*"]
}