mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
* Convert packages/init-stack to TypeScript and configure tsup for bundling Co-Authored-By: Konstantin Wohlwend <n2d4xc@gmail.com> * Address PR feedback: remove esbuildPlugins, remove index.mjs, update pnpm-lock.yaml Co-Authored-By: Konstantin Wohlwend <n2d4xc@gmail.com> * Add ESLint configuration to init-stack package Co-Authored-By: Konstantin Wohlwend <n2d4xc@gmail.com> * Remove unnecessary no-restricted-syntax rule from init-stack ESLint config Co-Authored-By: Konstantin Wohlwend <n2d4xc@gmail.com> * Add lint script to init-stack package.json Co-Authored-By: Konstantin Wohlwend <n2d4xc@gmail.com> * Remove parserOptions from init-stack ESLint config and add typecheck script Co-Authored-By: Konstantin Wohlwend <n2d4xc@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Konstantin Wohlwend <n2d4xc@gmail.com>
23 lines
511 B
JSON
23 lines
511 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"target": "ES2021",
|
|
"lib": ["ES2021", "ES2022.Error"],
|
|
"module": "ES2020",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"noErrorTruncation": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"declarationMap": true,
|
|
"types": [
|
|
"vitest/importMeta"
|
|
]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test-run-output"]
|
|
}
|