DefinitelyTyped/types/lockfile-lint-api/tsconfig.json
Markus Lasermann d8fc699366
🤖 Merge PR #46594 Add types for lockfile-lint-api v5.1 by @Snaptags
* Add types for lockfile-lint-api v5.1

* Add correct dependencies type

* These are methodes, not properties

* Change interfaces and types to PascalCase

according to https://github.com/basarat/typescript-book/blob/master/docs/styleguide/styleguide.md#interface

* Remove test data; the tests never actually run
2020-08-13 02:28:49 -04:00

26 lines
541 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"dom",
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"jsx": "react",
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"lockfile-lint-api-tests.ts"
]
}