Javascript instead of Typescript #1889
-
Hello. I love the ignite-cli and all it has to offer. I'm wondering if it is possible to bootstrap a 'new' project to use Javascript instead of Typescript. Fingers crossed that I can... Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @krd ! While it's possible to remove TypeScript from an Ignited project, there are quite a few steps, so you're probably better off initializing an empty React Native project and bringing over Ignite concepts as needed. Sorry I don't have a better answer for this! You can also just rename all of your |
Beta Was this translation helpful? Give feedback.
Hi @krd ! While it's possible to remove TypeScript from an Ignited project, there are quite a few steps, so you're probably better off initializing an empty React Native project and bringing over Ignite concepts as needed. Sorry I don't have a better answer for this! You can also just rename all of your
.ts|.tsx
files to.js
(NOT.jsx
) and make sure allowJs isfalse
, remove all type annotations and definitions, and it should work as expected.