DocSpace-client/packages/shared/tsconfig.eslint.json

25 lines
469 B
JSON
Raw Normal View History

2023-11-24 07:43:45 +00:00
{
"extends": "./tsconfig.json",
"include": [
// 👇️ add all the directories and files
// that you want to lint here
"utils",
"components",
"enums",
"constants",
"themes",
"types",
2023-12-04 07:01:56 +00:00
"skeletons",
2023-11-24 07:43:45 +00:00
// add all files in which you see
// the "parserOptions.project" error
".eslintrc.cjs",
"__mocks__",
"jest.config.ts",
".storybook",
"babel.config.ts",
"index.d.ts",
"tsconfig.eslint.json"
]
}