Open
Description
Suggestion
Now that TS 4.5 supports import assertions and JSON modules, it'd be great if it similarly supported CSS modules which are now shipping in Chrome and Edge.
There are two aspects of JSON module support that would be important to add for CSS modules:
- Built-in typing of CSS modules based on their import assertion. This could be done in library code with Ambient Module Declarations for Import Attributes (formerly known as Import Assertions) #46135 but since there's a specified interface of CSS modules, the type would ideally be included in TS's DOM lib.
- Copying of CSS files during build. JSON files are copied as part of compilation so that relative paths to JSON modules work in the compiled output. Doing this for CSS modules would ensure that they also work in the output without an extra copy step.
🔍 Search Terms
- CSS module
✅ Viability Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
⭐ Suggestion
📃 Motivating Example
import styles from './styles.css' assert {type: 'css'};
document.adoptedStyleSheets = [...document.adoptedStyleSheets, styles];
💻 Use Cases
Importing standard CSS modules...