- React component library
- Next.js site
npm install @zemd/tsconfig --save-dev
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "My cool react library",
"extends": "@zemd/tsconfig/tsconfig-react.json"
}
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "My cool app configuration",
"extends": "@zemd/tsconfig/tsconfig-next.json"
}
Also, you have to set compilerOptions.outDir
, compilerOptions.rootDir
, and compilerOptions.baseUrl
options explicitly, so it would be clear about target destinations. And keep in mind that compilerOptions.outDir
is considered a relative path in Typescript, it must be defined within your tsconfig.
It is not limited by Emotion itself but showed up precisely when I was configuring it. Once you extend tsconfnig-next.json
, a css
attribute can't be used and the typechecker throws an error. You can fix it by adding next-env.d.ts
into the include
array:
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
That means that includes
field is also considered as relative paths in typescript.
@zemd/tsconfig is released under the MIT license.