CoolFace
Apppublic

WaledRashed24/comics

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
tsconfig.json29 linesDownload Raw Back to root
1{2  "compilerOptions": {3    "target": "ES2022",4    "lib": ["dom", "dom.iterable", "esnext"],5    "allowJs": true,6    "skipLibCheck": true,7    "strict": true,8    "forceConsistentCasingInFileNames": true,9    "noEmit": true,10    "esModuleInterop": true,11    "module": "esnext",12    "moduleResolution": "node",13    "resolveJsonModule": true,14    "isolatedModules": true,15    "jsx": "preserve",16    "incremental": true,17    "plugins": [18      {19        "name": "next"20      }21    ],22    "paths": {23      "@/*": ["./src/*"]24    }25  },26  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],27  "exclude": ["node_modules"]28}29