Use bootstrap components for up- and downloads

This commit is contained in:
Søren L. Hansen
2022-04-09 10:10:03 +00:00
parent 736ad294e7
commit 7f05f2fe17
22 changed files with 6840 additions and 1717 deletions

View File

@@ -1,16 +1,18 @@
{
"compilerOptions": {
"outDir": "./dist/",
"jsx": "react-jsx",
"jsxImportSource": "preact",
"strictNullChecks": true,
"noUnusedLocals" : true,
"noImplicitThis": true,
"alwaysStrict": true,
"outDir": "./dist/",
"declaration": true,
"sourceMap": true,
"target": "es5",
"target": "esnext",
"module": "commonJS",
"baseUrl": ".",
"types": ["preact", "node"],
"paths": {
"*": ["./typings/*"]
}