diff --git a/tsconfig.json b/tsconfig.json index 07bb88e..da3d104 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,42 +1,21 @@ { "compilerOptions": { - "target": "ES2017", - "lib": [ - "dom", - "dom.iterable", - "esnext" + "target": "es5", "lib": [ + "dom", "dom.iterable", "esnext" ], "allowJs": true, "skipLibCheck": true, - "strict": false, - "noImplicitAny": false, - "noEmit": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "react-jsx", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "paths": { - "@/*": [ - "./src/*" - ] - } + "noEmit": true, + "jsx": "react-jsx" }, "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts", - ".next/dev/types/**/*.ts" - ], - "exclude": [ - "node_modules" + "src" ] -} +} \ No newline at end of file