Files
DefinitelyTyped/types/react-bootstrap/tsconfig.json
Vito d16fb75482 refactor react-bootstrap into individual modules
this allows individual components to be imported in addition to named
imports on the root module. closes #15856
2017-07-25 15:28:09 -04:00

27 lines
595 B
JSON

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