DefinitelyTyped/types/rox-browser/tsconfig.json
Guillaume 129f3ca7a8 Add types for rox-browser (#38452)
* Add types for rox-browser

* rox-browser: exporting namespaces, as per review

* rox-browser: export everything (remove export {})
2019-09-24 11:36:27 -07:00

25 lines
516 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"strictFunctionTypes": true
},
"files": [
"index.d.ts",
"rox-browser-tests.ts"
]
}