2025-12-03 10:47:37 +00:00
|
|
|
{
|
|
|
|
|
"extends": "./tsconfig.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"sourceMap": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts",
|
2026-04-03 12:44:03 +00:00
|
|
|
"**/__tests__/**",
|
|
|
|
|
"src/constants/template/src/**",
|
|
|
|
|
"src/constants/template/vitest.config.ts",
|
|
|
|
|
"src/constants/template/tsconfig.spec.json"
|
2025-12-03 10:47:37 +00:00
|
|
|
]
|
|
|
|
|
}
|