26 lines
653 B
JSON
26 lines
653 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"composite": true,
|
||
|
|
"incremental": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"resolveJsonModule": true
|
||
|
|
}
|
||
|
|
}
|