node-ts-scaffold
Version:
CLI tool to scaffold TypeScript projects with ESLint and Prettier
19 lines • 469 B
JSON
{
"compilerOptions": {
"target": "ES2024",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"strict": true,
"outDir": "build",
"declaration": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"noImplicitAny": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build"]
}