SnapAPI/tsconfig.json
SnapAPI CEO b2688c0cce
All checks were successful
Build & Deploy to Staging / Build & Deploy to Staging (push) Successful in 9m52s
fix: exclude test files from tsc build
2026-02-25 08:09:58 +00:00

17 lines
439 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/**/__tests__/**", "src/**/*.test.*"]
}