WIP: Basic working version. Will import .html files and resolve its dependencies. But it will generate invalid html when sourcemaps are enabled, assets like <link..> do not yet work...

This commit is contained in:
2023-04-27 21:49:13 +02:00
parent 240d5cfe9a
commit 831e607591
8 changed files with 105 additions and 70 deletions

View File

@@ -4,8 +4,9 @@
"esModuleInterop": true,
"noEmit": true,
"noEmitOnError": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
// Surpress errors about unused stuff: doesn't solve any bugs and is just annyoing during development, leave warning about this to the IDE or linters
"noUnusedLocals": false,
"noUnusedParameters": false,
"pretty": true,
"sourceMap": true,
"strict": true,