DefinitelyTyped/types/bootstrap-menu/tsconfig.json
superheri 621b0e6094 Add typing definitions for bootstrap-menu (#34714)
* Add typing definitions for bootstrap-menu

* Fix TypeScript version depending on JQuery

* Fix tests

* Fix more errors

* Fix white space

* Fix default export function

* Fix types as mentionned in Pull Request

* Fix export errors

* Add destroy and close functions to make the build pass
2019-04-17 14:36:00 -07:00

25 lines
514 B
JSON

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