mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-23 22:12:24 +03:00
23 lines
376 B
JSON
23 lines
376 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["node"]
|
|
},
|
|
"exclude": [
|
|
"**/__mocks__/**/*",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx",
|
|
"**/*.stories.ts",
|
|
"**/*.stories.tsx",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx"
|
|
],
|
|
"include": [
|
|
"src/**/*.js",
|
|
"src/**/*.jsx",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
]
|
|
}
|