mirror of
https://github.com/denoland/deno.git
synced 2025-09-19 00:49:51 +00:00
Support loading additional TS lib files (#3863)
Fixes #3726 This PR provides support for referencing other lib files (like lib.dom.d.ts that are not used by default in Deno.
This commit is contained in:
parent
3d5bed35e0
commit
046bbb2691
22 changed files with 284 additions and 67 deletions
|
@ -101,6 +101,10 @@ export interface CompilerOptions {
|
|||
* Does not apply to `"esnext"` target. */
|
||||
useDefineForClassFields?: boolean;
|
||||
|
||||
/** List of library files to be included in the compilation. If omitted,
|
||||
* then the Deno main runtime libs are used. */
|
||||
lib?: string[];
|
||||
|
||||
/** The locale to use to show error messages. */
|
||||
locale?: string;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue