- Make sure you have tide installed and setup
npm init -yto setup apackage.json(we need this as we install dependencies usingnpm)npm install --save-dev typescript-deno-plugin typescriptas described in typescript-deno-plugin repo- finally, add the following to your
tsconfig.jsonto enable thetypescript-deno-plugin{ "compilerOptions": { "plugins": [{ "name": "typescript-deno-plugin", "enable": true, // default is `true` "importmap": "import_map.json" }] } }
With this in place, tide will function just as expected with a codebase targeted to Deno as it does with a normal TypeScript project.
