Releases: antonk52/cssmodules-language-server
Releases · antonk52/cssmodules-language-server
v1.5.1 Windows bug fix
Support for "extends" tsconfig and jsconfig files
Cssmodules-language-server now can resolve "extends" field in tsconfig and jsconfig files.
Thanks to a new contributor @domharries
v1.4.1 Better Windows support & correct completion kind
This release includes:
- A fix for windows os where if your editor was setup to mimic unix End Of Line characters that would result in no completion or go to definition functionality. Contributed by @Daydreamer-riri
- Completion items are now correctly marked as
Field
instead ofText
. Contributed by @Daydreamer-riri
Improved dashes support and new completion triggers
v1.3.2 Support for json5 in tsconfigs
- support for json5 in tsconfigs by @dhleong
- dev tools updates and migrations
- eslint to biome
- jest to vitest
- update dependencies
v1.3.1 Fix for window
@Pineappletooth fix a long standing #14 that stopped this package from running on Windows platforms. Thanks!
v1.3.0 Support for reolving files with `baseUrl` and no `paths` by @quentin-fox
As of TypeScript 4.1, baseUrl is no longer required to be set when using paths.
Which means that you can set a baseUrl
in your tsconfig.json
which allows you import modules with project wide absolute file paths.
Thanks to @quentin-fox for the work!
v1.2.1 Add missing file
- Fixes #8 introduced in v1.2.0, thanks to @jrock2004 for reporting and @MagicDuck for fixing 👏
v1.2.0 tsconfig alias support
This release introduces a basic support to aliases from tsconfig and jsconfig files. Thanks for reporting @igor-ribeiro