DefinitelyTyped/types/kap-plugin/tsconfig.json
Connor Peet 98c1a4b208
add types for kap plugins (#42416)
* add types for kap plugins

* add support for new oauth functionality

* fixup! pr comments

* fixup! pr comments

* Update types/kap-plugin/index.d.ts

Co-Authored-By: Sindre Sorhus <sindresorhus@gmail.com>

* rebuild

Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
2020-02-19 12:13:24 -08:00

24 lines
491 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"kap-plugin-tests.ts"
]
}