mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
22 lines
429 B
JSON
22 lines
429 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"pretty": false,
|
|
"esModuleInterop": true,
|
|
"declaration": false,
|
|
"outDir": "dist/latest"
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"test/tests/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |