mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
30 lines
627 B
JSON
30 lines
627 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"noEmit": true,
|
|
"pretty": true,
|
|
"lib": ["es2016", "es2017", "dom"],
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@gitbeaker/*": ["packages/*/src"]
|
|
},
|
|
|
|
"strictPropertyInitialization": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": false,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true
|
|
}
|
|
}
|