gitbeaker/tsconfig.base.json
Justin Dalrymple 7f1648802b Major Release v36.0.0 - Improved Typing, and API support (16.0) (#2258)
Adding extensive typing support
Unified browser and Node.JS implementations
Adding support of Gitlab API 16.0
2023-04-26 12:58:56 -04:00

26 lines
537 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"noEmit": true,
"pretty": true,
"sourceMap": true,
"inlineSources": true,
"allowJs": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"noImplicitAny": false,
"downlevelIteration": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
},
"files": ["./global.d.ts"]
}