vitaliiromanenko_popcorn-md/tsconfig.jest.json
VitaliiRomanenko b08510e868 chore: add Jest configuration and dependencies for testing
- Added Jest and related types to devDependencies in package.json.
- Created a new tsconfig.jest.json for Jest testing with appropriate compiler options.
- Updated tsconfig.json to include Jest types and test files in the include path.
2026-06-07 21:00:19 +03:00

20 lines
555 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"target": "ES2021",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "node",
"isolatedModules": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2021", "DOM"],
"resolveJsonModule": true,
"esModuleInterop": true,
"types": ["jest", "node"]
},
"include": ["tests/**/*.test.ts", "src/**/*.ts"]
}