Files
gridpilot.gg/apps/website/tsconfig.json
2025-12-24 13:04:18 +01:00

27 lines
653 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"module": "esnext",
"moduleResolution": "bundler",
"baseUrl": ".",
"jsx": "preserve",
"incremental": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmitOnError": true,
"types": ["react", "react-dom"],
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@testing/*": ["../../testing/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", ".next"]
}