mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
e44813b65d
Don't generate sourcemaps for TS Remove github actions
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
module.exports = {
|
|
setupFiles: ["./jest.setup.js"],
|
|
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
|
|
transform: {
|
|
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest",
|
|
},
|
|
testMatch: ["**/?(*.)+(test).[jt]s?(x)"],
|
|
testEnvironment: "jsdom",
|
|
};
|