plane/web/tsconfig.json
sriram veeraghanta 57f2445bb8 fix: ingest events
2024-04-06 17:13:24 +05:30

29 lines
426 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
}
}