├── .github ├── dependabot.yml └── workflows │ ├── node.js.yml │ └── stale.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src └── index.ts ├── test ├── cases │ ├── basic │ │ ├── expected │ │ │ └── style.css.d.ts │ │ ├── index.js │ │ ├── style.css │ │ └── webpack.config.ts │ ├── camelcase │ │ ├── expected │ │ │ └── style.css.d.ts │ │ ├── index.ts │ │ ├── style.css │ │ └── webpack.config.ts │ └── typecheck │ │ ├── expected │ │ └── style.css.d.ts │ │ ├── index.ts │ │ ├── style.css │ │ └── webpack.config.ts └── webpack-integration.test.ts └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | jest.config.js 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/cases/basic/expected/style.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/basic/expected/style.css.d.ts -------------------------------------------------------------------------------- /test/cases/basic/index.js: -------------------------------------------------------------------------------- 1 | import './style.css'; 2 | -------------------------------------------------------------------------------- /test/cases/basic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/basic/style.css -------------------------------------------------------------------------------- /test/cases/basic/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/basic/webpack.config.ts -------------------------------------------------------------------------------- /test/cases/camelcase/expected/style.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/camelcase/expected/style.css.d.ts -------------------------------------------------------------------------------- /test/cases/camelcase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/camelcase/index.ts -------------------------------------------------------------------------------- /test/cases/camelcase/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/camelcase/style.css -------------------------------------------------------------------------------- /test/cases/camelcase/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/camelcase/webpack.config.ts -------------------------------------------------------------------------------- /test/cases/typecheck/expected/style.css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/typecheck/expected/style.css.d.ts -------------------------------------------------------------------------------- /test/cases/typecheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/typecheck/index.ts -------------------------------------------------------------------------------- /test/cases/typecheck/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/typecheck/style.css -------------------------------------------------------------------------------- /test/cases/typecheck/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/cases/typecheck/webpack.config.ts -------------------------------------------------------------------------------- /test/webpack-integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/test/webpack-integration.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/typed-css-modules-webpack-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------