Rewrite options page with Svelte

This commit is contained in:
hensm
2022-06-02 20:16:01 +01:00
committed by Matt Hensman
parent c2f00a2412
commit 63f9af30ae
15 changed files with 1741 additions and 1094 deletions

View File

@@ -1,12 +1,13 @@
{
"compilerOptions": {
"esModuleInterop": true
, "module": "commonjs"
, "noImplicitAny": true
, "noUnusedParameters": true
, "removeComments": true
, "resolveJsonModule": true
, "target": "es6"
, "strict": true
}
"esModuleInterop": true,
"module": "commonjs",
"noImplicitAny": true,
"noUnusedParameters": true,
"removeComments": true,
"resolveJsonModule": true,
"target": "es6",
"strict": true
},
"exclude": ["node_modules/**/*", "dist/**/*"]
}