mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
09c6d6fbb1
Refactor Options modal, webgl scanline, restore `Apple2.apple2`, other minor fixes.
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
module.exports = {
|
|
'moduleNameMapper': {
|
|
'^js/(.*)': '<rootDir>/js/$1',
|
|
},
|
|
'roots': [
|
|
'js/',
|
|
'test/',
|
|
],
|
|
'testMatch': [
|
|
'**/?(*.)+(spec|test).+(ts|js)'
|
|
],
|
|
'transform': {
|
|
'^.+\\.js$': 'babel-jest',
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
};
|