DefinitelyTyped/types/angular-ui-bootstrap/tsconfig.json
Igor Oleinikov f0f7aab46f
[angular-ui-bootstrap] Export module name (#37813)
* [angular-ui-bootstrap] Make compatible with npm
- starting with 1.0.0 it exports the module name

* Add test that type is possible to reference
2019-08-21 14:54:44 -07:00

26 lines
624 B
JSON

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