New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

typed-css-loader

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typed-css-loader

typed-css-modules loader for typescript

0.0.1
npm
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

typed-css-loader

Webpack loader for https://github.com/Quramy/typed-css-modules Inspired by https://github.com/olegstepura/typed-css-modules-loader


const settings = {
    // ...
    module: {
        loaders: [
            {
                test: /\.tsx$/,
                loaders: [
                    "babel-loader", 
                    "ts-loader", 
                    {
                        loader: "typed-css-loader",
                        options: { ts: true, extensions: [".sss"] }
                    }
                ]
            },
            // for styles
            {
                test: /\.sss$/,
                loader: "typed-css-loader"
            }

        ]
    }
  // ...
}

FAQs

Package last updated on 23 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts