react-chrome-extension-boilerplate
react-chrome-extension-boilerplate copied to clipboard
Update compiler options to "react-jsx"
Currently, typescript throws 'React' refers to a UMD global, but the current file is a module error without import React from 'react';
Consider updating tsconfig.json
to react-jsx
"compilerOptions": {
...
"jsx": "react-jsx",
...
}