-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(css): add more stricter typing of lightningcss
- Loading branch information
1 parent
53a97cf
commit d2198d2
Showing
5 changed files
with
22 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* eslint-disable @typescript-eslint/ban-ts-comment */ | ||
|
||
// @ts-ignore `sass` may not be installed | ||
import type Lightningcss from 'lightningcss' | ||
|
||
/* eslint-enable @typescript-eslint/ban-ts-comment */ | ||
|
||
export type LightningCSSOptions = Omit< | ||
Lightningcss.BundleAsyncOptions<Lightningcss.CustomAtRules>, | ||
| 'filename' | ||
| 'resolver' | ||
| 'minify' | ||
| 'sourceMap' | ||
| 'analyzeDependencies' | ||
// properties not overridden by Vite, but does not make sense to set by end users | ||
| 'inputSourceMap' | ||
| 'projectRoot' | ||
> |