Releases: dprint/dprint-plugin-typescript
Releases · dprint/dprint-plugin-typescript
0.32.5
Install
Then in your project's .dprintrc.json:
- Specify the plugin url in the
"plugins"
array. - Ensure
.ts
,.tsx
,.js
,.jsx
,.mjs
file extensions are matched in an"includes"
pattern. - 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
Install
Then in your project's .dprintrc.json:
- Specify the plugin url in the
"plugins"
array. - Ensure
.ts
,.tsx
,.js
,.jsx
,.mjs
file extensions are matched in an"includes"
pattern. - 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
Install
Then in your project's .dprintrc.json:
- Specify the plugin url in the
"plugins"
array. - Ensure
.ts
,.tsx
,.js
,.jsx
,.mjs
file extensions are matched in an"includes"
pattern. - 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
Install
In .dprintrc.json:
- Specify the plugin url in the
"plugins"
array:{ // etc... "plugins": [ "https://plugins.dprint.dev/typescript-0.32.2.wasm" ] }
- Ensure
.{ts,tsx,js,jsx,mjs}
file extensions are matched in an"includes"
pattern. - Add a
"typescript"
configuration property if desired.{ // ...etc... "typescript": { // TypeScript & JavaScript config goes here } }
0.32.1
Install
Then in your project's .dprintrc.json:
- Specify the plugin url in the
"plugins"
array:{ // etc... "plugins": [ "https://plugins.dprint.dev/typescript-0.32.1.wasm" ] }
- Ensure
.{ts,tsx,js,jsx,mjs}
file extensions are matched in an"includes"
pattern. - Add a
"typescript"
configuration property if desired.{ // ...etc... "typescript": { // TypeScript & JavaScript config goes here } }
0.32.0
Install
In .dprintrc.json:
- Specify the plugin url in the
"plugins"
array:{ // etc... "plugins": [ "https://plugins.dprint.dev/typescript-0.32.0.wasm" ] }
- Ensure
.{ts,tsx,js,jsx,mjs}
file extensions are matched in an"includes"
pattern. - Add a
"typescript"
configuration property if desired.{ // ...etc... "typescript": { // TypeScript & JavaScript config goes here } }
0.31.3
Merge pull request #56 from bartlomieju/0.31.3 0.31.3
0.31.2
Merge pull request #55 from bartlomieju/0.31.2 0.31.2
0.31.1
- upgrade
swc_ecmascript
to 0.7.3
0.31.0
refactor: Change Formatter to format_text as it's no longer needed. - Fixes #49 - Adds better support for mjs files.