mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-27 12:11:14 +00:00
26 lines
472 B
JSON
26 lines
472 B
JSON
{
|
|
"extends": "../../packages/config/typescript/next.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@payload-config": ["./payload.config.ts"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mjs",
|
|
"**/*.json"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|