40 lines
974 B
JSON
40 lines
974 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"rootDir": "../../",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@the-order/ui": ["../../packages/ui/src"],
|
|
"@the-order/ui/server": ["../../packages/ui/src/server"],
|
|
"@the-order/schemas": ["../../packages/schemas/src"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"../../packages/ui/src/**/*.ts",
|
|
"../../packages/ui/src/**/*.tsx"
|
|
],
|
|
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.mts"]
|
|
}
|