gitbeaker/tsconfig.json
Justin Dalrymple 15c841c15b fix: Fixing some minor bugs (#486)
* fix: Change mapping import to be dynamic and fix old reference to humps
* chore: Removing default exports
* fix: Cleaning up .d.ts export
* docs: Adding browser example
* fix: Fixing rollup config

closes: #485
closes: #475
2019-10-28 14:10:54 +01:00

39 lines
839 B
JSON

{
"compilerOptions": {
/* Basic Options */
"target": "es5",
"module": "es6",
"outDir": "dist",
"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"]
}