mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-08 07:50:44 -05:00
10 lines
269 B
Markdown
10 lines
269 B
Markdown
|
Every time a project or library is created the `typescript-eslint/parser` must be added.
|
||
|
|
||
|
```json
|
||
|
"ignorePatterns": ["!**/*", "vite.config.ts"],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": "./apps/app-name/tsconfig.app.json"
|
||
|
},
|
||
|
```
|