UNPKG

@bob-obringer/tsconfig

Version:

A collection of strict typescript configurations for my projects

22 lines (21 loc) 555 B
{ "extends": "./tsconfig.app.dom.json", "display": "bob-obringer next.js tsconfig", "compilerOptions": { "lib": ["es2022", "dom", "dom.iterable"], "plugins": [{ "name": "next" }], "module": "ESNext", "moduleResolution": "Bundler", "jsx": "preserve", "noEmit": true, "incremental": true }, "include": [ "${configDir}/next-env.d.ts", "${configDir}/next.config.js", "${configDir}/**/*.ts", "${configDir}/**/*.tsx", "${configDir}/.next/types/**/*.ts" ], "exclude": ["${configDir}/node_modules"] }