DefinitelyTyped/types/vmap/tsconfig.json
John G. Gainfort, Jr 1026305052 added typings for vmap-js (#37272)
* added typings for vmap-js

* added github profile

* wrapped interfaces in namespace

* converting Object to any

* removed linting rule

* refactored following advice
2019-08-02 15:13:12 -07:00

26 lines
537 B
JSON

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