update deps
This commit is contained in:
parent
536eb76dce
commit
de82c0f0a5
3 changed files with 12 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
|
@ -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"
|
||||
],
|
||||
}
|
Loading…
Reference in a new issue