Standardize linting rules and TypeScript compiler options 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
269 B
JSON
16 lines
269 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"moduleResolution": "bundler",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM"]
|
|
}
|
|
}
|