plane/web/tsconfig.json
2024-06-11 14:39:52 +05:30

24 lines
519 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": {
"@/*": ["core/*"],
"@/helpers/*": ["helpers/*"],
"@/public/*": ["public/*"],
"@/styles/*": ["styles/*"],
"@split/*": ["ce/*"]
},
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
}
}