Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(linting): fix typescript parser issue (#11243)
## Summary Resolve a lint-staged error reported by @macandcheese: ```text ✖ eslint --fix: /Users/adam9519/Documents/git-repositories/calcite-design-system/packages/calcite-components/src/components/combobox/combobox.stories.ts 0:0 error Parsing error: /Users/adam9519/Documents/git-repositories/calcite-design-system/packages/calcite-components/src/components/combobox/combobox.stories.ts was not found by the project service. Consider either including it in the tsconfig.json or including it in allowDefaultProject ✖ 1 problem (1 error, 0 warnings) husky - pre-commit script failed (code 1) Hook process exited. ``` It seems like the projectService option is using `tsconfig.json` (which excludes stories) instead of `tsconfig-eslint.json`. Disabling the option for now. ref: https://typescript-eslint.io/getting-started/typed-linting/
- Loading branch information