mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
27 lines
642 B
JSON
27 lines
642 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"../../packages/types/*.d.ts",
|
|
"../../packages/types/next-auth.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
, "../../packages/lib/process-env.d.ts" ],
|
|
"exclude": ["node_modules"]
|
|
}
|