All checks were successful
continuous-integration/drone/push Build is passing
Replace project-local ESLint, Prettier, TypeScript, and Vite configs with shared packages from dev-configs monorepo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
425 B
JSON
17 lines
425 B
JSON
{
|
|
"extends": "@vigdorov/typescript-config/node",
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"resolvePackageJsonExports": true,
|
|
"target": "ES2023",
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": false,
|
|
"strictBindCallApply": false,
|
|
"strictPropertyInitialization": false,
|
|
"noFallthroughCasesInSwitch": false
|
|
}
|
|
}
|