monorepo/packages/eslint-config/tsconfig.json

36 lines
899 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",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2025-04-30 19:50:16 +08:00
"baseUrl": ".",
"module": "Preserve",
"moduleResolution": "node",
"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,
"declaration": true,
"declarationMap": true,
2025-03-11 09:22:09 +08:00
"importsNotUsedAsValues": "remove",
"noEmit": false,
"outDir": "./dist",
2025-04-30 19:50:16 +08:00
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"isolatedModules": true,
"skipLibCheck": true
}
}