@nsmp/js-api
Version:
Types for jsApi
19 lines (18 loc) • 321 B
JavaScript
module.exports = {
moduleFileExtensions: [
'js',
'ts'
],
preset: 'ts-jest',
testEnvironment: 'jsdom',
testPathIgnorePatterns: [
'/node_modules/'
],
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(t|j)s?$',
transform: {
'^.+\\.[t|j]s?$': ['ts-jest', {
isolatedModules: true
}]
},
verbose: true
};