Files
claude-task-master/tsconfig.json
Ralph Khreish 19ec52181d feat: create tm-core and apps/cli (#1093)
- add typescript
- add npm workspaces
2025-09-01 21:44:43 +02:00

30 lines
561 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022"],
"types": ["node"],
"allowJs": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"baseUrl": "."
},
"tsx": {
"tsconfig": {
"allowImportingTsExtensions": false
}
},
"include": [
"bin/**/*",
"scripts/**/*",
"packages/*/src/**/*",
"apps/*/src/**/*"
],
"exclude": ["node_modules", "dist", "**/dist"]
}