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