DefinitelyTyped/types/react-overlays/tsconfig.json
Vito 0a1c229ee5 refactor react-overlays into individual modules (#18197)
* refactor react-overlays into individual modules

also adds correct definitions for some modules whose definitions
were incorretly being imported from react-bootstrap.
(react-bootstrap depends on react-overlays, not the other way around)

* use exported namespace hack instead of default exports
2017-07-24 10:05:39 -07:00

26 lines
560 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react"
},
"files": [
"index.d.ts",
"test/react-overlays-tests.tsx",
"test/react-overlays-tests-individual.tsx"
]
}