These are base shared tsconfig.json
s from which all other tsconfig.json
's inherit from.
- Base config
- React config
- React Native config
- Next.js Config
- Preact config
- Node.js config
npm install -D @fly-lab/tsconfig
yarn add -D @fly-lab/tsconfig
pnpm install -D @fly-lab/tsconfig
Extend your project tsconfig.json
{
"extends": "@fly-lab/tsconfig/nextjs.json",
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
Extend your project tsconfig.json
{
"extends": "@fly-lab/tsconfig/react.json",
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}