mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
b3cb64357f
* Use class fields instead of binding * classy tests * Fix typing
13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
module.exports = {
|
|
'roots': [
|
|
'js/',
|
|
'test/',
|
|
],
|
|
'testMatch': [
|
|
'**/?(*.)+(spec|test).+(ts|js)'
|
|
],
|
|
'transform': {
|
|
'^.+\\.js$': 'babel-jest',
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
}; |