Hello Stefan
To fix this issue add "include": ["./*.js"]
into tsconfig.json file.
And after that if you will have the error with @sveltejs/adapter-auto
, run this command: npm i -D @sveltejs/adapter-node@next
And after that fix import in svelte.config.js file from import adapter from '@sveltejs/adapter-auto';
to import adapter from '@sveltejs/adapter-node';
After that reinstall your dependencies (npm i
)