Personal tsconfig.json
files to extend from.
# using pnpm
pnpm add -D @yungezeit/tsconfig
# using npm
npm add -D @yungezeit/tsconfig
# using yarn
yarn add -D @yungezeit/tsconfig
# using bun
bun add -D @yungezeit/tsconfig
You may extend from the following provided tsconfigs:
Node:
{
"extends": ["@yungezeit/tsconfig/default.json"],
}
Browser:
{
"extends": ["@yungezeit/tsconfig/dom.json"],
}
You should make sure to specify the include
field in your tsconfig.json
:
{
"extends": ["@yungezeit/tsconfig/default.json"],
"include": ["src/**/*"]
}
Usually, one would have secondary tsconfig
files dedicated to node tooling that are used to match TypeScript files which are not part of the project's actual code. Most of the time, such file are called tsconfig.{xxx}.json
and should be referenced from the main tsconfig.json
file:
tsconfig.json
{
"extends": "@yungezeit/tsconfig/default.json",
"references": [{ "path": "./tsconfig.node.json" }],
"include": ["src/**/*"]
}
tsconfig.node.json
{
"extends": "./tsconfig.json",
"include": ["tsup.config.ts", "vitest.config.ts"],
"compilerOptions": {
"composite": true,
"noEmit": false,
"emitDeclarationOnly": true
}
}