When getting started with nuxt 3, it creates TypeScript project by default. Is there a way to move to JavaScript?
I have tried:
- Rename
nuxt.config.tstonuxt.config.js - delete
tsconfig.json - add
jsconfig.json
Contents of nuxt.config.js
export default {
};
contents of package.json
{
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "node .output/server/index.mjs"
},
"devDependencies": {
"nuxt3": "latest"
}
}
Still the .nuxt folder creates TypeScript files

.mjsfiles.