mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-21 09:23:00 +00:00
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
"use strict";
|
|
|
|
const extensions = [
|
|
// https://github.com/sveltejs/language-tools/blob/master/packages/svelte-vscode/package.json
|
|
".svelte",
|
|
];
|
|
module.exports = {
|
|
overrides: [
|
|
{
|
|
files: extensions.flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
|
|
customSyntax: "postcss-html",
|
|
},
|
|
],
|
|
};
|