DefinitelyTyped/types/react-dom/tsconfig.json
Jessica Franco f0016483a4
[react, react-dom] declare experimental APIs (#39416)
* [react] declare experimental APIs

* [react] add jsdoc to experimental APIs based on the new Concurrent Mode docs

* [react-dom] add declarations for experimental APIs

* [react-dom, react] Add more documentation

* [react-dom] fix compatibility with older typescript

* [react-dom] fix file layout for CI

* [react-dom] remove feature that was removed, add missing experimental feature

* [react] don't try to guard against bug that will be fixed
2019-10-25 17:52:38 +09:00

30 lines
705 B
JSON

{
"files": [
"index.d.ts",
"experimental.d.ts",
"test/react-dom-tests.tsx",
"test/experimental-tests.tsx",
"server/index.d.ts",
"node-stream/index.d.ts",
"test-utils/index.d.ts"
],
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve"
}
}