From 3942c67a479d56f0016ab3700fde87a04d2a81f2 Mon Sep 17 00:00:00 2001 From: Sebastiaan Marynissen Date: Wed, 31 Jan 2024 22:49:46 +0100 Subject: [PATCH] Ensure type declarations end up in dist --- tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 483be9f..94be094 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,8 +11,14 @@ "strict": true, "noImplicitAny": false, "removeComments": false, + "emitDecoratorMetadata": true, + "composite": true, + "experimentalDecorators": true, "strictPropertyInitialization": false, + "resolveJsonModule": true, "sourceMap": true, + "isolatedModules": false, + "declaration": true }, "exclude": ["node_modules", "**/__tests__"], "include": ["./src"]