Some checks failed
Sync dev → Gitea / Mirror dev to Gitea (push) Has been cancelled
Commits merged: - fix(FN-217): fix import sort order (lint) - fix(FN-217): convert @sase/shared to emit ESM for Vite/Rollup build compatibility - fix(FN-217): lazy-load canvas-confetti via dynamic import to avoid bloating subscription bundle Files changed: apps/web/src/routes/dashboard/subscription/index.tsx | 13 +++++++------ apps/web/src/routes/pricing.tsx | 2 +- packages/shared/package.json | 5 +++-- packages/shared/tsconfig.json | 4 ++-- 4 files changed, 13 insertions(+), 11 deletions(-) Fusion-Task-Id: FN-217
21 lines
472 B
JSON
21 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|