Skip to content

Commit de120b3

Browse files
committed
Accept new baselines
1 parent d3b7058 commit de120b3

File tree

8 files changed

+8
-8
lines changed
  • tests/baselines/reference/tsConfig

8 files changed

+8
-8
lines changed

tests/baselines/reference/tsConfig/Default initialized TSConfig/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false
77
}
88
}

tests/baselines/reference/tsConfig/Initialized TSConfig with boolean value compiler options/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false,
77
"noUnusedLocals": true
88
}

tests/baselines/reference/tsConfig/Initialized TSConfig with enum value compiler options/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false,
77
"jsx": "react"
88
}

tests/baselines/reference/tsConfig/Initialized TSConfig with files options/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false
77
},
88
"files": [

tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option value/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false,
77
"lib": [
88
"es5",

tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false
77
}
88
}

tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options with enum value/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false,
77
"lib": [
88
"es5",

tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"strict": false,
5+
"strict": true,
66
"sourceMap": false,
77
"types": [
88
"jquery",

0 commit comments

Comments
 (0)