gitbeaker/tsconfig.json
Justin 79d8c718b0 fix: Fixing the inability to use environment variables in the cli export (#463)
chore: Cleaning up the rollup configuration
chore: Updating packages to remove vulnerabilities
docs: Updating usage documentation to improve clarity
test: Adding proper tests for cli functionality
closes:#458
2019-11-21 11:00:18 +01:00

38 lines
817 B
JSON

{
"compilerOptions": {
/* Basic Options */
"target": "es5",
"module": "es6",
"noEmit": true,
"pretty": true,
"declaration": true,
"declarationDir": "dist/types",
"incremental": true,
"lib": ["es2015", "es2016", "es2017", "dom"],
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
"baseUrl": "./",
"resolveJsonModule": true,
/* Strict Type-Checking Options */
"strictPropertyInitialization": true,
"strictNullChecks": true,
"noImplicitAny": false,
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
},
"include": ["src/**/*"],
"exclude": ["generate.ts"]
}