DefinitelyTyped/types/theme-ui/tsconfig.json
Ifiok Jr 432e8369f9 feat: add types for theme-ui (#37210)
* feat: add types for theme-ui

* test: add basic test
2019-07-31 13:05:53 -07:00

28 lines
604 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"]
},
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"theme-ui-tests.tsx"
]
}