diff --git a/api/tsconfig.json b/api/tsconfig.json index e7ff90f..a6316fa 100644 --- a/api/tsconfig.json +++ b/api/tsconfig.json @@ -1,26 +1,16 @@ { "compilerOptions": { - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, + "target": "ES2021", "skipLibCheck": true, - "strict": true, + "strict": false, + "forceConsistentCasingInFileNames": true, "noEmit": true, + "noEmitOnError": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", + "module": "commonjs", + "moduleResolution": "node", "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "paths": { - "@/*": ["./*"] - } + "isolatedModules": true }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "include": ["examples", "frameworks.ts", "_lib"] }