diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 000000000..db4bc1e3c --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "bundler", + "strict": true, + "skipLibCheck": true, + "noEmit": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, + "jsx": "react-jsx", + "types": ["bun", "@types/node"] + } +} diff --git a/tsconfig.json b/tsconfig.json index bcc029849..fd6a79cd0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "module": "ESNext", "moduleResolution": "bundler", "jsx": "react-jsx", - "strict": true, + "strict": false, "skipLibCheck": true, "noEmit": true, "esModuleInterop": true,