From 4fa637c909767ea68ffd398dc8dff78bedd4f3fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20de=20Vasconcelos?= Date: Tue, 10 Sep 2024 16:54:44 +0100 Subject: [PATCH] Emit type declaration --- tsconfig.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7fa1f05..9f58169 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,15 @@ { - "compilerOptions": { - "target": "ESNext", - "baseUrl": ".", - "rootDir": ".", - "module": "NodeNext", - "moduleResolution": "NodeNext", - "allowJs": true, - "outDir": "dist", - "sourceMap": true, - "esModuleInterop": true, - "declaration": false - }, - "exclude": ["**/node_modules", "**/.*/", "**/dist/"] + "compilerOptions": { + "target": "ESNext", + "baseUrl": ".", + "rootDir": ".", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "allowJs": true, + "outDir": "dist", + "sourceMap": true, + "esModuleInterop": true, + "declaration": true + }, + "exclude": ["**/node_modules", "**/.*/", "**/dist/"] }