UNPKG

@krudi/typescript-config

Version:

Shared TypeScript configuration for projects to provide consistent compiler settings.

21 lines (20 loc) 490 B
{ "$schema": "https://json.schemastore.org/tsconfig", "extends": "@krudi/typescript-config/base.json", "compilerOptions": { "lib": ["ES2022", "dom", "dom.iterable"], "jsx": "preserve", "plugins": [ { "name": "next" } ], "include": [ "next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts" ], "exclude": ["node_modules"] } }