mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-08 22:48:14 -05:00
improvement(monorepo): added tsconfig package, resolved type errors in testing package (#2613)
This commit is contained in:
@@ -2,14 +2,19 @@
|
||||
"name": "simstudio",
|
||||
"version": "0.1.19",
|
||||
"description": "Sim CLI - Run Sim with a single command",
|
||||
"main": "dist/index.js",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"bin": {
|
||||
"simstudio": "dist/index.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "bun run build:tsc",
|
||||
"build:tsc": "tsc",
|
||||
"build": "tsc",
|
||||
"type-check": "tsc --noEmit",
|
||||
"prepublishOnly": "bun run build"
|
||||
},
|
||||
"files": [
|
||||
@@ -19,17 +24,16 @@
|
||||
"simstudio",
|
||||
"ai",
|
||||
"workflow",
|
||||
"ui",
|
||||
"cli",
|
||||
"sim",
|
||||
"sim-studio",
|
||||
"agent",
|
||||
"agents",
|
||||
"automation",
|
||||
"docker"
|
||||
],
|
||||
"author": "Sim",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^4.1.2",
|
||||
"commander": "^11.1.0",
|
||||
@@ -38,20 +42,9 @@
|
||||
"listr2": "^6.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sim/tsconfig": "workspace:*",
|
||||
"@types/inquirer": "^8.2.6",
|
||||
"@types/node": "^20.5.1",
|
||||
"typescript": "^5.1.6"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
},
|
||||
"turbo": {
|
||||
"tasks": {
|
||||
"build": {
|
||||
"outputs": [
|
||||
"dist/**"
|
||||
]
|
||||
}
|
||||
}
|
||||
"typescript": "^5.7.3"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,15 +1,10 @@
|
||||
{
|
||||
"extends": "@sim/tsconfig/library-build.json",
|
||||
"compilerOptions": {
|
||||
"target": "es2020",
|
||||
"module": "ESNext",
|
||||
"target": "ES2020",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"declaration": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
"rootDir": "./src"
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
|
||||
Reference in New Issue
Block a user