webapp-deployment-status-api/tsconfig.json

25 lines
632 B
JSON
Raw Permalink Normal View History

2024-01-19 02:17:30 +00:00
{
"compilerOptions": {
"target": "es2022",
"module": "node16",
"lib": ["ES2022"],
"moduleResolution": "node16",
"rootDir": ".",
"outDir": "build",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"skipLibCheck": true
2024-01-19 02:17:30 +00:00
},
"include": ["src/**/*", "__tests__/**/*"]
}