28 lines
735 B
JSON
28 lines
735 B
JSON
{
|
|
"extends": [
|
|
"@tsconfig/strictest/tsconfig",
|
|
"@tsconfig/node18/tsconfig",
|
|
"@tsconfig/next/tsconfig"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"stripInternal": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"noImplicitReturns": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": false
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|