2024-01-04 01:07:25 +03:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2024-04-04 16:38:01 +03:00
|
|
|
"outDir": "../../dist/out-tsc",
|
|
|
|
"types": ["node"]
|
2024-01-04 01:07:25 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
2024-04-04 16:38:01 +03:00
|
|
|
"**/__mocks__/**/*",
|
2024-01-04 01:07:25 +03:00
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.spec.tsx",
|
2024-04-04 16:38:01 +03:00
|
|
|
"**/*.stories.ts",
|
|
|
|
"**/*.stories.tsx",
|
|
|
|
"**/*.test.ts",
|
|
|
|
"**/*.test.tsx"
|
2024-01-04 01:07:25 +03:00
|
|
|
],
|
2024-03-06 15:59:42 +03:00
|
|
|
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.ts", "src/**/*.tsx"]
|
2024-01-04 01:07:25 +03:00
|
|
|
}
|