mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-23 12:02:10 +03:00
18 lines
326 B
JSON
18 lines
326 B
JSON
|
{
|
||
|
"extends": "./tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"types": ["jest", "node"]
|
||
|
},
|
||
|
"include": [
|
||
|
"**/__mocks__/**/*",
|
||
|
"jest.config.ts",
|
||
|
"src/**/*.d.ts",
|
||
|
"src/**/*.spec.ts",
|
||
|
"src/**/*.spec.tsx",
|
||
|
"src/**/*.test.ts",
|
||
|
"src/**/*.test.tsx",
|
||
|
"vite.config.ts"
|
||
|
]
|
||
|
}
|