@hanzo/dev
Version:
Hanzo Dev - Meta AI development CLI that manages and runs all LLMs and CLI tools
26 lines (25 loc) • 565 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020", "DOM"],
"outDir": "./dist",
"rootDir": "../../src",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowJs": true,
"typeRoots": ["../../node_modules/@types", "./node_modules/@types"]
},
"include": [
"../../src/cli/**/*",
"../../src/cli-tools/**/*"
],
"exclude": [
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
]
}