mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"types": ["node", "vite/client"],
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"@documenso/api": ["../../packages/api"],
|
|
"@documenso/assets": ["../../packages/assets"],
|
|
"@documenso/auth": ["../../packages/auth"],
|
|
"@documenso/ee": ["../../packages/ee"],
|
|
"@documenso/lib": ["../../packages/lib"],
|
|
"@documenso/prisma": ["../../packages/prisma"],
|
|
"@documenso/trpc": ["../../packages/trpc"],
|
|
"@documenso/ui": ["../../packages/ui"],
|
|
"@documenso/tailwind-config": ["../../packages/tailwind-config"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"moduleDetection": "force",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": false
|
|
}
|
|
}
|