@rajzik/tsconfig
Version:
Pre-packaged tsconfig.json's for personal configured projects
35 lines (30 loc) • 880 B
JSON
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Rajzik config",
"compilerOptions": {
/* Base options */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2024",
"lib": ["ES2024"],
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"allowArbitraryExtensions": true,
"jsx": "preserve",
/* Keep TSC performant in monorepos */
"incremental": true,
"disableSourceOfProjectReferenceRedirect": true,
"tsBuildInfoFile": "${configDir}/.cache/tsbuildinfo.json",
/* Strictness */
"strict": true,
"checkJs": true,
"noUncheckedIndexedAccess": true,
/* Transpile using bundler */
"module": "preserve",
"moduleResolution": "bundler",
"noEmit": true
},
"exclude": ["node_modules", "dist", "dts", ".next", "build"]
}