menu icon indicating copy to clipboard operation
menu copied to clipboard

react import breaks typescript compilation

Open pdeva opened this issue 6 years ago • 1 comments

reference https://github.com/ant-design/ant-design/issues/19276.

the line:

import React from 'react';

should be

  
import * as React from 'react';

pdeva avatar Oct 18 '19 19:10 pdeva

Maybe you can try flag esModuleInterop in tsconfig and you can import CommonJS modules in compliance with es6 modules.

vagusX avatar Oct 19 '19 06:10 vagusX