mirror of
https://github.com/PCSX2/web-api.git
synced 2026-01-31 01:15:16 +01:00
20 lines
408 B
JSON
20 lines
408 B
JSON
{
|
|
"preset": "ts-jest/presets/default-esm",
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsconfig": "./tsconfig.json",
|
|
"useESM": true
|
|
}
|
|
},
|
|
"transform": {
|
|
"^.+\\.(t|j)sx?$": "ts-jest"
|
|
},
|
|
"testRegex": "/test/.*\\.test\\.ts$",
|
|
"testEnvironment": "miniflare",
|
|
"testEnvironmentOptions": {
|
|
"scriptPath": "./src/index.ts",
|
|
"modules": true
|
|
},
|
|
"collectCoverageFrom": ["src/**/*.{ts,tsx}"]
|
|
}
|