Files
plane/web/tsconfig.json
2024-06-04 14:12:55 +05:30

20 lines
382 B
JSON

{
"extends": "tsconfig/nextjs.json",
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"esModuleInterop": true,
"paths": {
"@/*": ["*"]
},
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
}
}