react-chrome-extension-boilerplate icon indicating copy to clipboard operation
react-chrome-extension-boilerplate copied to clipboard

Update compiler options to "react-jsx"

Open scootyboots opened this issue 2 years ago • 0 comments

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",
    ...
}

scootyboots avatar Dec 16 '22 05:12 scootyboots