CoolFace
Apppublic

LULDev/zero-gpu-spaces

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