gitbeaker/tsconfig.json
Daniel Rose da1a8f6a63 fix: Make package Typescript-conformant
Remove the typings directory.
Declare and use the types/interfaces in the various index.ts files.
This will produce a package that can be used by Typescript without
errors.

Remove the typings directory. Declare and use the types/interfaces in the various index.ts files.

This will produce a package that can be used by Typescript without errors.
2019-06-12 15:06:00 +02:00

34 lines
675 B
JSON

{
"compilerOptions": {
/* Basic Options */
"target": "es5",
"module": "es6",
"outDir": "dist",
"noEmit": true,
"pretty": true,
"declaration": true,
"lib": ["ES2015", "ES2016", "ES2017", "DOM"],
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
"baseUrl": "./",
/* Strict Type-Checking Options */
"strictPropertyInitialization": true,
"strictNullChecks": true,
"noImplicitAny": false,
"downlevelIteration": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true
},
"include": ["src/**/*"]
}