Files
rspade_system/node_modules/mini-css-extract-plugin/dist/plugin-options.json
root bd5809fdbd Reorganize RSpade directory structure for clarity
Improve Jqhtml_Integration.js documentation with hydration system explanation
Add jqhtml-laravel integration packages for traditional Laravel projects

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-24 09:41:48 +00:00

59 lines
1.2 KiB
JSON

{
"type": "object",
"additionalProperties": false,
"properties": {
"filename": {
"anyOf": [
{
"type": "string"
},
{
"instanceof": "Function"
}
]
},
"chunkFilename": {
"anyOf": [
{
"type": "string"
},
{
"instanceof": "Function"
}
]
},
"experimentalUseImportModule": {
"description": "Enable the experimental importModule approach instead of using child compilers. This uses less memory and is faster.",
"type": "boolean"
},
"ignoreOrder": {
"type": "boolean"
},
"insert": {
"description": "Inserts `<link>` at the given position (https://github.com/webpack-contrib/mini-css-extract-plugin#insert).",
"anyOf": [
{
"type": "string"
},
{
"instanceof": "Function"
}
]
},
"attributes": {
"description": "Adds custom attributes to tag (https://github.com/webpack-contrib/mini-css-extract-plugin#attributes).",
"type": "object"
},
"linkType": {
"anyOf": [
{
"enum": ["text/css"]
},
{
"type": "boolean"
}
]
}
}
}