1.0.1 • Published 12 months ago

typescript-remix-routes-plugin v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months ago

typescript-remix-plugin

TypeScript language server plugin that adds intellisense to your Remix projects.

Features

Get Started

$ npm install typescript-remix-plugin -D

And configure plugins section in your tsconfig.json, for example:

{
  "compilerOptions": {
    "target": "ES2019",
    "plugins": [
      {
        "name": "typescript-remix-plugin",
        "tag": "route"
      }
    ]
  }
}

Route path completion

// import name should be the same as the tag name in the `tsconfig.json`
import route from 'typescript-remix-plugin/tag';

const id = 1;

route`/posts/${id}`;

Route path completion

Route path diagnostics

Route path diagnostics

Jump to route definition

Jump to route definition

Route module completion

Route module completion

License

MIT