1 files changed, 7 insertions, 1 deletions
diff --git a/util/tsconfig.json b/util/tsconfig.json
index fa3bc6cb..e7a2f36f 100644
--- a/util/tsconfig.json
+++ b/util/tsconfig.json
@@ -67,6 +67,12 @@
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"emitDecoratorMetadata": true,
- "experimentalDecorators": true
+ "experimentalDecorators": true,
+ "plugins": [
+ {
+ "transform": "ts-transform-json-schema",
+ "type": "program"
+ }
+ ]
}
}
|