randre70
randre70
Me too, also vhdl_ls is still running after vscode is closed. Keeps files locked and thumb drives can't be ejected.
tsx uses esbuild which doesn't support decorators. Whenever you have decorators in your code, don't use tsx/esbuild
currently tsx can't be used if decorators are used. esbuild doesn't support decorators nor has it a type system. only solution is either tsc or swc. supporting both would be...
tsx is fine as long as you won't use decorators which esbuild doesn't support. esbuild has not type support.
And further set the package.json "type": "module". This makes "verbatimModuleSyntax":true a requirement. Otherwise node would complain on "import { some } from './'" statements without a trailing ".js" extension. ```...