mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-13 09:32:12 +00:00
Updated deps, fixed some ts issues, renamed "scripts" to "dev-scripts", and added a script to delete build output.
10 lines
287 B
JavaScript
10 lines
287 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
export default {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
transform: { '^.+\\.(ts|tsx)$': 'ts-jest' },
|
|
testTimeout: 30000,
|
|
moduleFileExtensions: [ 'ts', 'tsx', 'js' ],
|
|
testMatch: [ '**/*.test.ts' ],
|
|
setupFiles: []
|
|
}; |