taskgenius_taskgenius-plugin/packages/esbuild-plugin-inline-worker/tsconfig.json
Quorafind 06f0e89638 chore: setup pnpm workspace monorepo structure
- Add pnpm-workspace.yaml for monorepo configuration
- Move esbuild-plugin-inline-worker to workspace package
- Update package.json to use workspace:* references
- Add workspace-related entries to .gitignore
2025-11-26 10:28:57 +08:00

26 lines
473 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./",
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": ["node"],
"typeRoots": [
"./types",
"./node_modules/@types"
]
},
"include": [
"index.ts",
"types/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}