20 lines
497 B
JSON
20 lines
497 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2024"],
|
|
"types": ["node"],
|
|
"rootDir": "src/repair",
|
|
"outDir": "dist/repair",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/repair/**/*.ts"]
|
|
}
|