gitbeaker/tsconfig.json
Justin Dalrymple 565bd15449
Removed circular references (#1387)
- Updated requester structure
- Removed duplicate pipeline jobs function
2020-12-18 14:23:49 -05:00

37 lines
760 B
JSON

{
"compilerOptions": {
/* Basic Options */
"target": "es5",
"module": "ESNext",
"noEmit": true,
"pretty": true,
"lib": ["es2015", "es2016", "es2017", "dom"],
"sourceMap": true,
"inlineSources": true,
/* Module Resolution Options */
"moduleResolution": "node",
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@gitbeaker/*": ["packages/*/src"]
},
/* Strict Type-Checking Options */
"strictPropertyInitialization": true,
"strictNullChecks": true,
"noImplicitAny": false,
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
}
}