Skip to content

Commit 0b12e9d

Browse files
committed
Merge branch 'master' of github.com:Microsoft/TypeScript
2 parents bf3cea7 + 3f98c51 commit 0b12e9d

File tree

14 files changed

+29
-13
lines changed

14 files changed

+29
-13
lines changed

tests/projects/empty-files/core/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"compilerOptions": {
33
"composite": true,
44
"declaration": true,
5-
"declarationMap": true
5+
"declarationMap": true,
6+
"skipDefaultLibCheck": true
67
}
78
}

tests/projects/empty-files/no-references/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"compilerOptions": {
55
"composite": true,
66
"declaration": true,
7-
"forceConsistentCasingInFileNames": true
7+
"forceConsistentCasingInFileNames": true,
8+
"skipDefaultLibCheck": true
89
}
910
}

tests/projects/empty-files/with-references/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"compilerOptions": {
77
"composite": true,
88
"declaration": true,
9-
"forceConsistentCasingInFileNames": true
9+
"forceConsistentCasingInFileNames": true,
10+
"skipDefaultLibCheck": true
1011
}
1112
}

tests/projects/outfile-concat/first/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"strict": false,
77
"sourceMap": true,
88
"declarationMap": true,
9-
"outFile": "./bin/first-output.js"
9+
"outFile": "./bin/first-output.js",
10+
"skipDefaultLibCheck": true
1011
},
1112
"files": [
1213
"first_PART1.ts",

tests/projects/outfile-concat/second/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"sourceMap": true,
88
"declarationMap": true,
99
"declaration": true,
10-
"outFile": "../2/second-output.js"
10+
"outFile": "../2/second-output.js",
11+
"skipDefaultLibCheck": true
1112
},
1213
"references": [
1314
]

tests/projects/outfile-concat/third/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"sourceMap": true,
88
"declarationMap": true,
99
"declaration": true,
10-
"outFile": "./thirdjs/output/third-output.js"
10+
"outFile": "./thirdjs/output/third-output.js",
11+
"skipDefaultLibCheck": true
1112
},
1213
"files": [
1314
"third_part1.ts"

tests/projects/projectReferenceWithRootDirInParent/tsconfig.base.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"composite": true,
44
"declaration": true,
55
"rootDir": "./src/",
6-
"outDir": "./dist/"
6+
"outDir": "./dist/",
7+
"skipDefaultLibCheck": true
78
},
89
"exclude": [
910
"node_modules"

tests/projects/resolveJsonModuleAndComposite/tests/tsconfig_withFiles.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"resolveJsonModule": true,
88
"esModuleInterop": true,
99
"allowSyntheticDefaultImports": true,
10-
"outDir": "dist"
10+
"outDir": "dist",
11+
"skipDefaultLibCheck": true
1112
},
1213
"files": [
1314
"src/index.ts", "src/hello.json"

tests/projects/resolveJsonModuleAndComposite/tests/tsconfig_withInclude.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"resolveJsonModule": true,
88
"esModuleInterop": true,
99
"allowSyntheticDefaultImports": true,
10-
"outDir": "dist"
10+
"outDir": "dist",
11+
"skipDefaultLibCheck": true
1112
},
1213
"include": [
1314
"src/**/*"

tests/projects/resolveJsonModuleAndComposite/tests/tsconfig_withIncludeAndFiles.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"resolveJsonModule": true,
88
"esModuleInterop": true,
99
"allowSyntheticDefaultImports": true,
10-
"outDir": "dist"
10+
"outDir": "dist",
11+
"skipDefaultLibCheck": true
1112
},
1213
"files": [
1314
"src/hello.json"

tests/projects/sample1/core/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"compilerOptions": {
33
"composite": true,
44
"declaration": true,
5-
"declarationMap": true
5+
"declarationMap": true,
6+
"skipDefaultLibCheck": true
67
}
78
}

tests/projects/sample1/logic/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"composite": true,
44
"declaration": true,
55
"sourceMap": true,
6-
"forceConsistentCasingInFileNames": true
6+
"forceConsistentCasingInFileNames": true,
7+
"skipDefaultLibCheck": true
78
},
89
"references": [
910
{ "path": "../core" }

tests/projects/sample1/tests/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"compilerOptions": {
88
"composite": true,
99
"declaration": true,
10-
"forceConsistentCasingInFileNames": true
10+
"forceConsistentCasingInFileNames": true,
11+
"skipDefaultLibCheck": true
1112
}
1213
}

tests/projects/sample1/ui/tsconfig.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"compilerOptions": {
3+
"skipDefaultLibCheck": true
4+
},
25
"references": [
36
{ "path": "../logic/index" }
47
]

0 commit comments

Comments
 (0)