Skip to content

Commit 3c573f7

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/reentrant-getEffectsSignature
2 parents b23740c + e6fac66 commit 3c573f7

File tree

275 files changed

+365
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

275 files changed

+365
-90
lines changed

src/harness/evaluatorImpl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export function evaluateTypeScript(source: string | { files: vfs.FileSet; rootFi
3939
const compilerOptions: ts.CompilerOptions = {
4040
target: ts.ScriptTarget.ES5,
4141
module: ts.ModuleKind.CommonJS,
42+
strict: false,
4243
lib: ["lib.esnext.d.ts", "lib.dom.d.ts"],
4344
...options,
4445
};

src/lib/es2015.core.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ interface Math {
173173
hypot(...values: number[]): number;
174174

175175
/**
176-
* Returns the integral part of the a numeric expression, x, removing any fractional digits.
176+
* Returns the integral part of the numeric expression x, removing any fractional digits.
177177
* If x is already an integer, the result is x.
178178
* @param x A numeric expression.
179179
*/

tests/baselines/reference/project/mapRootAbsolutePathModuleMultifolderNoOutdir/amd/mapRootAbsolutePathModuleMultifolderNoOutdir.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"baselineCheck": true,
1010
"mapRoot": "tests/cases/projects/outputdir_module_multifolder/mapFiles",
1111
"resolveMapRoot": true,
12+
"strict": false,
1213
"resolvedInputFiles": [
1314
"lib.es5.d.ts",
1415
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleMultifolderNoOutdir/node/mapRootAbsolutePathModuleMultifolderNoOutdir.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"baselineCheck": true,
1010
"mapRoot": "tests/cases/projects/outputdir_module_multifolder/mapFiles",
1111
"resolveMapRoot": true,
12+
"strict": false,
1213
"resolvedInputFiles": [
1314
"lib.es5.d.ts",
1415
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory/amd/mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"baselineCheck": true,
1111
"mapRoot": "tests/cases/projects/outputdir_module_multifolder/mapFiles",
1212
"resolveMapRoot": true,
13+
"strict": false,
1314
"resolvedInputFiles": [
1415
"lib.es5.d.ts",
1516
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory/node/mapRootAbsolutePathModuleMultifolderSpecifyOutputDirectory.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"baselineCheck": true,
1111
"mapRoot": "tests/cases/projects/outputdir_module_multifolder/mapFiles",
1212
"resolveMapRoot": true,
13+
"strict": false,
1314
"resolvedInputFiles": [
1415
"lib.es5.d.ts",
1516
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleMultifolderSpecifyOutputFile/amd/mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"baselineCheck": true,
1111
"mapRoot": "tests/cases/projects/outputdir_module_multifolder/mapFiles",
1212
"resolveMapRoot": true,
13+
"strict": false,
1314
"resolvedInputFiles": [
1415
"lib.es5.d.ts",
1516
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleMultifolderSpecifyOutputFile/node/mapRootAbsolutePathModuleMultifolderSpecifyOutputFile.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"baselineCheck": true,
1111
"mapRoot": "tests/cases/projects/outputdir_module_multifolder/mapFiles",
1212
"resolveMapRoot": true,
13+
"strict": false,
1314
"resolvedInputFiles": [
1415
"lib.es5.d.ts",
1516
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleSimpleNoOutdir/amd/mapRootAbsolutePathModuleSimpleNoOutdir.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"baselineCheck": true,
1010
"mapRoot": "tests/cases/projects/outputdir_module_simple/mapFiles",
1111
"resolveMapRoot": true,
12+
"strict": false,
1213
"resolvedInputFiles": [
1314
"lib.es5.d.ts",
1415
"lib.decorators.d.ts",

tests/baselines/reference/project/mapRootAbsolutePathModuleSimpleNoOutdir/node/mapRootAbsolutePathModuleSimpleNoOutdir.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"baselineCheck": true,
1010
"mapRoot": "tests/cases/projects/outputdir_module_simple/mapFiles",
1111
"resolveMapRoot": true,
12+
"strict": false,
1213
"resolvedInputFiles": [
1314
"lib.es5.d.ts",
1415
"lib.decorators.d.ts",

0 commit comments

Comments
 (0)