DefinitelyTyped/types/swiper/tsconfig.json
Matt McCutchen 09e71d3f4f swiper: Fix exports. (#29500)
The `swiper` module provides only a default export of the Swiper class,
while the `swiper/dist/js/swiper.esm` provides named exports of this
class as well as the Swiper "modules".

Also comply with no-declare-current-package dtslint rule.

See https://stackoverflow.com/q/52673117 .
2018-10-12 10:10:53 -07:00

26 lines
543 B
JSON

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