diff options
Diffstat (limited to 'js/ts_global.d.ts')
-rw-r--r-- | js/ts_global.d.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/js/ts_global.d.ts b/js/ts_global.d.ts index d4b027926..71a01e30e 100644 --- a/js/ts_global.d.ts +++ b/js/ts_global.d.ts @@ -4,8 +4,13 @@ // when building Deno, but the `typescript/lib/typescript.d.ts` is defined as a // module. +// Warning! This is a magical import. We don't want to have multiple copies of +// typescript.d.ts around the repo, there's already one in +// deno_typescript/typescript/lib/typescript.d.ts. Ideally we could simply point +// to that in this import specifier, but "cargo package" is very strict and +// requires all files to be present in a crate's subtree. // eslint-disable-next-line @typescript-eslint/no-unused-vars -import * as ts_ from "../node_modules/typescript/lib/typescript.d.ts"; +import * as ts_ from "$asset$/typescript.d.ts"; declare global { namespace ts { |