We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c3cf0 commit 5c30f6fCopy full SHA for 5c30f6f
website/content/docs/getting-started/typescript-with-alternative-parser.mdx
@@ -39,6 +39,21 @@ export default tseslint.config({
39
40
## Setup with Fallback Parsers
41
42
+### Add `typescript-eslint` to the project dependencies
43
+
44
+```sh copy title="Terminal"
45
+# npm
46
+npm install --save-dev typescript-eslint
47
48
+# pnpm
49
+pnpm add --save-dev typescript-eslint
50
51
+# yarn
52
+yarn add --dev typescript-eslint
53
+```
54
55
+### Update the `eslint.config.js` file
56
57
```js title="eslint.config.js"
58
59
// @ts-check
0 commit comments