DefinitelyTyped/types/relay-test-utils/tsconfig.json
Renan Machado 865ab540e9 [relay-test-utils] Create new package (#38767)
* create relay-test-utils package

* add RelayModernMockEnvironment

* add RelayMockPayloadGenerator

* add unwrapContainer
2019-10-02 11:50:14 -07:00

20 lines
536 B
JSON

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