2025-10-16 12:43:43 +00:00
|
|
|
{
|
2025-12-03 14:12:34 +00:00
|
|
|
"extends": "./tsconfig.json",
|
2025-10-16 12:43:43 +00:00
|
|
|
"compilerOptions": {
|
2025-12-03 14:12:34 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
2025-10-16 12:43:43 +00:00
|
|
|
"strict": true,
|
2025-12-01 10:44:35 +00:00
|
|
|
"esModuleInterop": true,
|
2025-12-03 14:12:34 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-10-16 12:43:43 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2025-12-01 10:44:35 +00:00
|
|
|
"skipLibCheck": true,
|
2025-12-03 14:12:34 +00:00
|
|
|
"resolveJsonModule": true,
|
2025-10-16 12:43:43 +00:00
|
|
|
"declaration": false,
|
2025-12-03 14:12:34 +00:00
|
|
|
"sourceMap": true
|
2025-10-16 12:43:43 +00:00
|
|
|
},
|
2025-12-03 14:12:34 +00:00
|
|
|
"include": ["src"],
|
2025-10-16 12:43:43 +00:00
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"**/*.test.ts",
|
2025-12-01 10:44:35 +00:00
|
|
|
"**/*.spec.ts",
|
|
|
|
|
"**/*.e2e-spec.ts",
|
2026-02-15 22:50:57 +00:00
|
|
|
"**/__tests__/**",
|
|
|
|
|
"**/__stories__/**",
|
|
|
|
|
"**/*.stories.ts",
|
|
|
|
|
"**/*.stories.tsx"
|
2025-10-16 12:43:43 +00:00
|
|
|
]
|
|
|
|
|
}
|