DefinitelyTyped/types/theme-ui/tsconfig.json
Piotr Monwid-Olechnowicz c388d9eb1e
Reexport @theme-ui/components from theme-ui (#41915)
* Reexport @theme-ui/components from theme-ui

* Rename initialColorMode to initialColorModeName

* Change required TS version of @types/theme-ui to 3.5
2020-01-30 13:15:22 -08:00

29 lines
666 B
JSON

{
"compilerOptions": {
"jsx": "preserve",
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"paths": {
"@styled-system/css": ["styled-system__css"],
"@theme-ui/components": ["theme-ui__components"]
},
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"theme-ui-tests.tsx"
]
}