mirror of
https://github.com/vitaliiromanenko/popcorn-md.git
synced 2026-07-22 07:45:25 +00:00
- 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.
20 lines
555 B
JSON
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"]
|
|
}
|