gatsby-plugin-typescript-css-modules

A gatsbyjs plugin for using CSS Modules and Typescript

Stars
10
Committers
1

Gatsby Plugin Typescript CSS Modules

This GatsbyJS plugin allows for using TypeScript along side CSS Modules.

It requires you to name your css files as page.module.css, but from there you can import them into TS files.

import * as styles from "./page.module.css";

The way this works is, under the covers the https://github.com/Jimdo/typings-for-css-modules-loader WebPack plugin reads the CSS file and generates a .d.ts file alongside your css.

Installing

First, install the plugin...

npm i gatsby-plugin-typescript-css-modules

Then, add the plugin to your gatsby-config.js...

  // ...
  "gatsby-plugin-typescript-css-modules"
]
Badges
Extracted from project README
Build Status
Related Projects