SyntaxError: Unexpected reserved word
SyntaxError: Unexpected reserved word
> 5 | import { Config } from 'src/js/config';
| ^
Where src/js/config is a config.ts Typescript file
Solution
In your jest transforms, make sure to include .ts and .tsx files
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|jsx|mjs|tsx|ts)$": "babel-jest",
"^.+\\.svg$": "jest-transform-file",
"^.+\\.(css|styl|less|sass|scss)$": "jest-transform-css"
}
},
Recent Comments