mirror of
https://github.com/logos-co/logos-web.git
synced 2026-08-30 21:51:09 +00:00
31 lines
548 B
JSON
31 lines
548 B
JSON
{
|
|
"extends": "../../packages/config/typescript/next.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@/components/*": ["./components/*"],
|
|
"@/css/*": ["./css/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mjs",
|
|
"**/*.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib/__tests__/**",
|
|
"vitest.config.ts"
|
|
]
|
|
}
|