esbuild-css-modules-plugin
Version:
A esbuild plugin to bundle css modules into js(x)/ts(x), based on extremely fast [Lightning CSS](https://lightningcss.dev/)
26 lines • 517 B
JSON
{
"compileOnSave": false,
"compilerOptions": {
"noEmit": true,
"declaration": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"lib": [
"ESNext"
],
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"allowArbitraryExtensions": true,
"esModuleInterop": true
},
"include": [
"index.js",
"lib/**/*",
"index.d.ts"
]
}