diff --git a/tsconfig.json b/tsconfig.json index 73971337..e6e5039f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,9 @@ { "compilerOptions": { + "diagnostics": true, "esModuleInterop": true, + "extendedDiagnostics": true, + "skipLibCheck": true, "jsx": "preserve", "lib": [ "dom", @@ -11,5 +14,12 @@ "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, - } + }, + "files": [ + "packages/core/types/index.d.ts", + "packages/react/types/index.d.ts" + ], + "include": [ + "packages/*/types/*.ts" + ], }