We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a016fc commit 63dcdefCopy full SHA for 63dcdef
src/harness/virtualFileSystemWithWatch.ts
@@ -1,10 +1,17 @@
1
/// <reference path="harness.ts" />
2
3
namespace ts.TestFSWithWatch {
4
- const { content: libFileContent } = Harness.getDefaultLibraryFile(Harness.IO);
5
export const libFile: FileOrFolder = {
6
path: "/a/lib/lib.d.ts",
7
- content: libFileContent
+ content: `/// <reference no-default-lib="true"/>
+interface Boolean {}
8
+interface Function {}
9
+interface IArguments {}
10
+interface Number { toExponential: any; }
11
+interface Object {}
12
+interface RegExp {}
13
+interface String { charAt: any; }
14
+interface Array<T> {}`
15
};
16
17
export const safeList = {
0 commit comments