feat: create tm-core and apps/cli (#1093)

- add typescript
- add npm workspaces
This commit is contained in:
Ralph Khreish
2025-09-01 21:44:43 +02:00
parent a7ad4c8e92
commit 0f3ab00f26
162 changed files with 22235 additions and 706 deletions

29
tsconfig.json Normal file
View File

@@ -0,0 +1,29 @@
{
"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"]
}