mirror of
https://github.com/taskgenius/taskgenius-plugin.git
synced 2026-07-22 06:40:25 +00:00
- 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
26 lines
473 B
JSON
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"
|
|
]
|
|
}
|