mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-01-20 18:41:41 +01:00
Mastermindzh
5829588665
Added default output to jest (for terminal output...) Upgraded npm packages. Left jest on 27 because of breaking changes in 28
15 lines
221 B
JavaScript
15 lines
221 B
JavaScript
const defaultConfig = {
|
|
version: "0.1.0",
|
|
name: "React-starter-kit",
|
|
};
|
|
|
|
// ignore this :)
|
|
try {
|
|
window.defaultConfig = defaultConfig;
|
|
if (module) {
|
|
module.exports = defaultConfig;
|
|
}
|
|
} catch {
|
|
// ignore
|
|
}
|