tsconfig.json•779 B
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node",
"lib": ["ES2022", "DOM"],
"outDir": "build",
"rootDir": "src",
"strict": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"allowJs": false,
"noImplicitAny": false,
"noImplicitThis": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"types": ["node"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build", "**/*.test.ts"]
}