Don't use experimental decorators in extensions

Seeing if we can compile our extensions using TS native which doesn't support these. The usage is so low that I think we can just remove them
This commit is contained in:
Matt Bierner
2025-08-06 13:24:19 -07:00
parent 0dce61c27f
commit d8c9852fe9
14 changed files with 24 additions and 79 deletions

View File

@@ -3,11 +3,9 @@
"compilerOptions": {
"outDir": "./out",
"esModuleInterop": true,
"experimentalDecorators": true,
"types": [
"node"
],
// Needed to suppress warnings in upstream completions
"noImplicitReturns": false,
"noUnusedParameters": false