From 33a1f1b74e6fd24417c4b34a5e2f47891cdc8e71 Mon Sep 17 00:00:00 2001 From: Rafal Dziegielewski Date: Tue, 5 Apr 2022 09:56:59 +0200 Subject: [PATCH] fix: exclude example-app from build --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e1a85ad..c27d2d1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,12 +12,12 @@ "noImplicitThis": true, "moduleResolution": "node", "module": "commonjs", - "baseUrl": "./", + "baseUrl": ".", "outDir": "lib", "declarationDir": "types", "allowSyntheticDefaultImports": true, "skipLibCheck": true, "skipDefaultLibCheck": true }, - "exclude": ["test", "lib", "types", "example"] + "exclude": ["test", "lib", "types", "example-app"] }