From 1b826a1b28ea3307616daf3e625b41f7c53a8957 Mon Sep 17 00:00:00 2001 From: Morb0 Date: Sun, 3 Jan 2021 13:27:28 +0300 Subject: [PATCH] fix(sample-app): add ts check to sample dir --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index bb13608..d12ec66 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,9 +10,8 @@ "target": "es6", "sourceMap": false, "outDir": "./dist", - "rootDir": "./lib", "skipLibCheck": true }, - "include": ["lib/**/*", "../index.ts"], + "include": ["lib/**/*", "./sample/**/*", "../index.ts"], "exclude": ["node_modules", "**/*.spec.ts"] }