diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-08-23 02:05:01 +1000 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-22 12:05:01 -0400 |
commit | 6c7d337960b3745a7b614a18150862279ef1c942 (patch) | |
tree | ab2d432d80c1bb2bfdc9d77de1644d3b1e4fa4b7 /cli | |
parent | bdc97b3976786bb744a27e59b0f4f28554a682df (diff) |
Support .d.ts files (#2746)
Fixes #1432
Diffstat (limited to 'cli')
-rw-r--r-- | cli/BUILD.gn | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/BUILD.gn b/cli/BUILD.gn index 3a5912471..c7a80907e 100644 --- a/cli/BUILD.gn +++ b/cli/BUILD.gn @@ -111,6 +111,7 @@ ts_sources = [ "../js/mock_builtin.js", "../js/net.ts", "../js/os.ts", + "../js/performance.ts", "../js/permissions.ts", "../js/plugins.d.ts", "../js/process.ts", @@ -127,6 +128,7 @@ ts_sources = [ "../js/text_encoding.ts", "../js/timers.ts", "../js/truncate.ts", + "../js/type_directives.ts", "../js/types.ts", "../js/url.ts", "../js/url_search_params.ts", @@ -135,7 +137,6 @@ ts_sources = [ "../js/window.ts", "../js/workers.ts", "../js/write_file.ts", - "../js/performance.ts", "../js/version.ts", "../js/xeval.ts", "../tsconfig.json", |