DefinitelyTyped/types/wouter/tsconfig.json
Maksim Karelov c54c9367c6 [wouter] Add types for wouter/preact submodule (#36788)
* Fix isMobile typings and tests

* Fix isMobile export

* Add types for wouter/preact submodule

* Remove `declare module` from preact submodule

* Fix children types in preact submodule

* Add missing preact dependency

* Fix package.json dependecy field
2019-07-10 13:39:07 -07:00

31 lines
685 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"strictFunctionTypes": true,
"allowSyntheticDefaultImports": true
},
"files": [
"index.d.ts",
"preact.d.ts",
"use-location.d.ts",
"static-location.d.ts",
"matcher.d.ts",
"wouter-tests.tsx"
]
}