tsconfig.json17 lines · main
| 1 | { |
| 2 | "$schema": "https://json.schemastore.org/tsconfig", |
| 3 | "extends": "tsconfig/nextjs.json", |
| 4 | "compilerOptions": { |
| 5 | "allowJs": false, |
| 6 | "noUnusedLocals": true, |
| 7 | "noUnusedParameters": true, |
| 8 | "lib": ["dom", "dom.iterable", "esnext"], |
| 9 | "paths": { |
| 10 | "@/*": ["./*"], |
| 11 | "@ui/*": ["./../../packages/studio/ui/src/*"] // handle ui package paths (briven: repointed at packages/studio/ui) |
| 12 | }, |
| 13 | "plugins": [{ "name": "next" }] |
| 14 | }, |
| 15 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], |
| 16 | "exclude": ["node_modules", "public/deno/*.ts", "data/**", "components/grid/**"] |
| 17 | } |