pnpm workspaces, Turborepo, TypeScript strict, ESLint flat config, Prettier, Vitest, husky + lint-staged. Placeholder packages for all 16 packages + 2 apps + 2 plugins. Closes #1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
623 B
JSON
24 lines
623 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|