tsconfig.json•700 B
{
"compilerOptions": {
"target": "ES2023", // Node.js 22 supports ES2023 features
"baseUrl": ".",
"module": "NodeNext", // Align with Node.js 22's ESM support
"moduleResolution": "nodenext",
"paths": {
"@tools/*": ["src/lib/*"]
},
"outDir": "./build",
"rootDir": "./src",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": ["node", "mocha"],
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["node_modules"]
}