diff options
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..2838c72 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "incremental": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "Bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "baseUrl": ".", + "paths": { + "@/components/*": ["components/*"], + "@/utils/*": ["utils/*"], + "@/lib/*": ["lib/*"], + "@/prisma/*": ["prisma/*"] + } + }, + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + "pages/api/v2/episode/[id].tsx", + "utils/schedulesUtils.ts", + "pages/middleware.js", + "pages/api/auth/[...nextauth].ts", + "components/anime/mobile/reused/infoChip.tsx" + ], + "exclude": ["node_modules"] +} |