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"] + } } }