DefinitelyTyped/types/react-router/tsconfig.json
mtpc bc710a72d6 Make Route component extensible
Shouldn't have any impact whatsoever in existing codebases due to default generics
2017-07-04 21:17:49 +02:00

40 lines
1.3 KiB
JSON

{
"compilerOptions": {
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"module": "commonjs",
"lib": ["es6", "dom"],
"jsx": "react",
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true
},
"files": [
"index.d.ts",
"test/examples-from-react-router-website/Ambiguous.tsx",
"test/examples-from-react-router-website/Animation.tsx",
"test/examples-from-react-router-website/Auth.tsx",
"test/examples-from-react-router-website/Basic.tsx",
"test/examples-from-react-router-website/CustomLink.tsx",
"test/examples-from-react-router-website/ModalGallery.tsx",
"test/examples-from-react-router-website/NoMatch.tsx",
"test/examples-from-react-router-website/Params.tsx",
"test/examples-from-react-router-website/PreventingTransitions.tsx",
"test/examples-from-react-router-website/Recursive.tsx",
"test/examples-from-react-router-website/RouteConfig.tsx",
"test/examples-from-react-router-website/Sidebar.tsx",
"test/examples-from-react-router-website/StaticRouter.tsx",
"test/Children.tsx",
"test/NavigateWithContext.tsx",
"test/MemoryRouter.tsx",
"test/Switch.tsx",
"test/InheritingRoute.tsx",
"test/WithRouter.tsx"
]
}