monorepo/packages/eslint-config/tsconfig.json

39 lines
934 B
JSON
Raw Normal View History

2025-03-11 09:22:09 +08:00
{
"compilerOptions": {
2025-04-30 19:50:16 +08:00
"incremental": true,
2025-03-11 09:22:09 +08:00
"target": "esnext",
2025-06-05 20:38:10 +08:00
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
2025-03-11 09:22:09 +08:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2025-06-05 20:38:10 +08:00
"module": "esnext",
"moduleResolution": "bundler",
2025-04-30 19:50:16 +08:00
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
2025-03-11 09:22:09 +08:00
"strictBindCallApply": false,
2025-04-30 19:50:16 +08:00
"strictNullChecks": true,
"alwaysStrict": true,
2025-03-11 09:22:09 +08:00
"noFallthroughCasesInSwitch": false,
2025-04-30 19:50:16 +08:00
"noImplicitAny": true,
2025-03-11 09:22:09 +08:00
"noImplicitReturns": true,
2025-04-30 19:50:16 +08:00
"noUnusedLocals": true,
2025-03-11 09:22:09 +08:00
"importsNotUsedAsValues": "remove",
2025-06-05 20:38:10 +08:00
"noEmit": true,
2025-04-30 19:50:16 +08:00
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
2025-06-05 20:38:10 +08:00
"skipLibCheck": true,
"pretty": true,
"plugins": [
{
"name": "next"
}
]
2025-04-30 19:50:16 +08:00
}
2025-06-05 20:38:10 +08:00
2025-04-30 19:50:16 +08:00
}