update deps

This commit is contained in:
Hamcha 2024-10-12 23:08:35 +02:00
parent 536eb76dce
commit de82c0f0a5
Signed by: hamcha
GPG key ID: 1669C533B8CF6D89
3 changed files with 12 additions and 6 deletions

View file

@ -1,4 +1,4 @@
import { build, stop } from "https://deno.land/x/esbuild@v0.19.2/mod.js";
import { build, stop } from "https://deno.land/x/esbuild@v0.24.0/mod.js";
import ts from "npm:typescript";
// from https://github.com/Microsoft/TypeScript/issues/6387#issuecomment-169739615

View file

@ -1,4 +1,4 @@
import { build, emptyDir } from "https://deno.land/x/dnt@0.38.1/mod.ts";
import { build, emptyDir } from "https://deno.land/x/dnt@0.40.0/mod.ts";
await emptyDir("./npm");

View file

@ -14,9 +14,15 @@
"alwaysStrict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"outDir": "./dist",
"lib": ["ES2017", "dom"]
"lib": [
"ES2017",
"dom"
]
},
"exclude": ["dist", "scripts", "npm"],
}
"exclude": [
"dist",
"scripts",
"npm"
],
}