mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-02 00:22:32 +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
287 B
JSON
16 lines
287 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../dist/out-tsc",
|
|
"module": "commonjs",
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": [
|
|
"jest.config.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.test.ts",
|
|
"vite.config.ts"
|
|
]
|
|
}
|