Skip to content

Commit 23947ea

Browse files
committed
Add strict function type task
For microsoft#81574 Replaces the strict property task since this is no longer needed
1 parent 5370653 commit 23947ea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.vscode/tasks.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
},
3434
{
3535
"type": "npm",
36-
"script": "strict-initialization-watch",
37-
"label": "TS - Strict Initialization",
36+
"script": "strict-function-types-watch",
37+
"label": "TS - Strict Function Types",
3838
"isBackground": true,
3939
"presentation": {
4040
"reveal": "never"
4141
},
4242
"problemMatcher": {
4343
"base": "$tsc-watch",
44-
"owner": "typescript-strict-initialization",
44+
"owner": "typescript-function-types",
4545
"applyTo": "allDocuments"
4646
}
4747
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"smoketest": "cd test/smoke && node test/index.js",
2626
"download-builtin-extensions": "node build/lib/builtInExtensions.js",
2727
"monaco-compile-check": "tsc -p src/tsconfig.monaco.json --noEmit",
28-
"strict-initialization-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictPropertyInitialization",
28+
"strict-function-types-watch": "tsc --watch -p src/tsconfig.json --noEmit --strictFunctionTypes",
2929
"update-distro": "node build/npm/update-distro.js",
3030
"web": "node scripts/code-web.js"
3131
},

0 commit comments

Comments
 (0)