mirror of
https://github.com/twentyhq/twenty.git
synced 2025-01-06 03:45:15 +03:00
bf8ee99ebb
Split from https://github.com/twentyhq/twenty/pull/4518 Related to #4766 Mutualizes eslint config between projects. I didn't include `twenty-server` in this PR as this was causing too many lint errors.
16 lines
285 B
JSON
16 lines
285 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": ""
|
|
},
|
|
"include": [
|
|
".storybook/*.ts",
|
|
".storybook/*.tsx",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.stories.mdx",
|
|
"src/**/*.stories.ts",
|
|
"src/**/*.stories.tsx"
|
|
]
|
|
}
|