keplergl/kepler.gl

Babel did not compile the TypeScript files in the 'src' directory

liuwo23 opened this issue · 0 comments

During the build process, when Babel is executed, only the .tsx and .js files are being compiled. The .tsx files are not being compiled, causing issues in the subsequent compilation process.

To Reproduce
yarn install

babel src --out-dir dist --source-maps inline --extensions '.ts,.tsx,.js,.jsx' --ignore '**/*.d.ts'

At this stage of execution, TypeScript files are not being compiled.

How can I resolve this issue?