**Describe what problem does this feature solve?** 1. css modules should endwith `.module.css` 2. support lazy css convention like `.lazy.css`, always is global scope css **Describe what does the proposed API look like?** css modules: `*.module.css` lazy css: ```tsx import styles from 'path/file.css' styles.use() ```