| { | |
| "compilerOptions": { | |
| "baseUrl": ".", | |
| "paths": { | |
| "components/*": ["src/components/*"], | |
| "lib/*": ["src/lib/*"], | |
| "temp/*": ["src/temp/*"], | |
| "assets/*": ["src/assets/*"], | |
| "graphql-types": [ | |
| "node_modules/@types/graphql-let/__generated__/__types__" | |
| ] | |
| }, | |
| "target": "es5", | |
| "lib": ["dom", "dom.iterable", "esnext"], | |
| "allowJs": true, | |
| "skipLibCheck": true, | |
| "strict": true, | |
| "strictFunctionTypes": false, | |
| "downlevelIteration": true, | |
| "noEmit": true, | |
| "esModuleInterop": true, | |
| "module": "esnext", | |
| "moduleResolution": "node", | |
| "resolveJsonModule": true, | |
| "isolatedModules": true, | |
| "jsx": "preserve", | |
| "allowSyntheticDefaultImports": true, | |
| "noImplicitReturns": true, | |
| "noImplicitAny": true, | |
| "noImplicitThis": true, | |
| "noUnusedLocals": true, | |
| "noUnusedParameters": true, | |
| "incremental": true, | |
| "forceConsistentCasingInFileNames": false | |
| }, | |
| "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], | |
| "exclude": ["node_modules"] | |
| } | |