Skip to content

Releases: dprint/dprint-plugin-typescript

0.32.5

17 Oct 14:15
7d94176
Compare
Choose a tag to compare

Install

Install and setup dprint.

Then in your project's .dprintrc.json:

  1. Specify the plugin url in the "plugins" array.
  2. Ensure .ts, .tsx, .js, .jsx, .mjs file extensions are matched in an "includes" pattern.
  3. Add a "typescript" configuration property if desired.
    {
      // ...etc...
      "typescript": {
        // TypeScript & JavaScript config goes here
      },
      "includes": [
        "**/*.{ts,tsx,js,jsx,mjs}"
      ],
      "plugins": [
        "https://plugins.dprint.dev/typescript-0.32.5.wasm"
      ]
    }

0.32.4

07 Oct 02:00
Compare
Choose a tag to compare

Install

Install and setup dprint.

Then in your project's .dprintrc.json:

  1. Specify the plugin url in the "plugins" array.
  2. Ensure .ts, .tsx, .js, .jsx, .mjs file extensions are matched in an "includes" pattern.
  3. Add a "typescript" configuration property if desired.
    {
      // ...etc...
      "typescript": {
        // TypeScript & JavaScript config goes here
      },
      "includes": [
        "**/*.{ts,tsx,js,jsx,mjs}"
      ],
      "plugins": [
        "https://plugins.dprint.dev/typescript-0.32.4.wasm"
      ]
    }

0.32.3

05 Oct 01:28
Compare
Choose a tag to compare

Install

Install and setup dprint.

Then in your project's .dprintrc.json:

  1. Specify the plugin url in the "plugins" array.
  2. Ensure .ts, .tsx, .js, .jsx, .mjs file extensions are matched in an "includes" pattern.
  3. Add a "typescript" configuration property if desired.
    {
      // ...etc...
      "typescript": {
        // TypeScript & JavaScript config goes here
      },
      "includes": [
        "**/*.{ts,tsx,js,jsx,mjs}"
      ],
      "plugins": [
        "https://plugins.dprint.dev/typescript-0.32.3.wasm"
      ]
    }

0.32.2

02 Oct 10:17
ce7f962
Compare
Choose a tag to compare

Install

In .dprintrc.json:

  1. Specify the plugin url in the "plugins" array:
    {
      // etc...
      "plugins": [
        "https://plugins.dprint.dev/typescript-0.32.2.wasm"
      ]
    }
  2. Ensure .{ts,tsx,js,jsx,mjs} file extensions are matched in an "includes" pattern.
  3. Add a "typescript" configuration property if desired.
    {
      // ...etc...
      "typescript": {
        // TypeScript & JavaScript config goes here
      }
    }

0.32.1

27 Sep 01:20
Compare
Choose a tag to compare

Install

Install and setup dprint.

Then in your project's .dprintrc.json:

  1. Specify the plugin url in the "plugins" array:
    {
      // etc...
      "plugins": [
        "https://plugins.dprint.dev/typescript-0.32.1.wasm"
      ]
    }
  2. Ensure .{ts,tsx,js,jsx,mjs} file extensions are matched in an "includes" pattern.
  3. Add a "typescript" configuration property if desired.
    {
      // ...etc...
      "typescript": {
        // TypeScript & JavaScript config goes here
      }
    }

0.32.0

27 Sep 00:45
Compare
Choose a tag to compare

Install

In .dprintrc.json:

  1. Specify the plugin url in the "plugins" array:
    {
      // etc...
      "plugins": [
        "https://plugins.dprint.dev/typescript-0.32.0.wasm"
      ]
    }
  2. Ensure .{ts,tsx,js,jsx,mjs} file extensions are matched in an "includes" pattern.
  3. Add a "typescript" configuration property if desired.
    {
      // ...etc...
      "typescript": {
        // TypeScript & JavaScript config goes here
      }
    }

0.31.3

12 Sep 18:47
07ac8b5
Compare
Choose a tag to compare
Merge pull request #56 from bartlomieju/0.31.3

0.31.3

0.31.2

11 Sep 23:56
bffec90
Compare
Choose a tag to compare
Merge pull request #55 from bartlomieju/0.31.2

0.31.2

0.31.1

09 Sep 11:24
8097458
Compare
Choose a tag to compare
  • upgrade swc_ecmascript to 0.7.3

0.31.0

07 Sep 15:42
Compare
Choose a tag to compare
refactor: Change Formatter to format_text as it's no longer needed.

- Fixes #49
- Adds better support for mjs files.