{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "bundler", "allowJs": true, "resolveJsonModule": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, "noEmit": true, "baseUrl": ".", "paths": { "@tm/core": ["packages/tm-core/src/index.ts"], "@tm/core/*": ["packages/tm-core/src/*"], "@tm/cli": ["apps/cli/src/index.ts"], "@tm/cli/*": ["apps/cli/src/*"] } }, "tsx": { "tsconfig": { "allowImportingTsExtensions": false } }, "include": [ "bin/**/*", "scripts/**/*", "packages/*/src/**/*", "apps/*/src/**/*" ], "exclude": ["node_modules", "dist", "**/dist"] }