diff --git a/tsconfig.json b/tsconfig.json index 1674879..076e8a9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,24 +1,19 @@ { "compilerOptions": { - "strict": true, - "strictNullChecks": true, - "skipLibCheck": true, + "target": "esnext", + "module": "esnext", + "moduleResolution": "node", "jsx": "preserve", "jsxFactory": "h", "jsxFragmentFactory": "Fragment", - "module": "ES6", - "moduleResolution": "node", - "noEmit": false, - "target": "ES6", - "declaration": true, - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "allowSyntheticDefaultImports": true, "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "isolatedModules": true, - "noFallthroughCasesInSwitch": true, - "resolveJsonModule": true + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "strict": true, + "noImplicitAny": false, + "skipLibCheck": true, + "declaration": true, + "emitDeclarationOnly": true }, "exclude": ["website", "packages/*/cjs", "packages/*/esm"] }