mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
|
module.exports = {
|
||
|
"roots": [
|
||
|
"js/",
|
||
|
"test/",
|
||
|
],
|
||
|
"testMatch": [
|
||
|
"**/?(*.)+(spec|test).+(ts|js)"
|
||
|
],
|
||
|
"transform": {
|
||
|
"^.+\\.js$": "babel-jest",
|
||
|
"^.+\\.ts$": "ts-jest"
|
||
|
},
|
||
|
}
|