mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
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 .
26 lines
543 B
JSON
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"
|
|
]
|
|
}
|