From 979f8f17395605d83235702f2fbb565faa5e28f2 Mon Sep 17 00:00:00 2001 From: Xiaofan Wu Date: Wed, 30 Nov 2022 16:58:20 +1100 Subject: [PATCH] fix: ts fix --- tsconfig.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fe81ede5e..8c8b41387 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,14 @@ { - "include": ["src/**/*.d.ts"], + "include": ["src", "config"], + "exclude": ["node_modules"], "compilerOptions": { "jsx": "react", "noEmit": true, - "esModuleInterop": true + "allowJs": true, + "esModuleInterop": true, + "baseUrl": "./", + "paths": { + "testing": ["config/testing.js"] + } } }