mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
25 lines
606 B
JSON
25 lines
606 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Next.js",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|