hivecast-sdk/packages/cli/tsconfig.mx-cli-original.json

55 lines
1.3 KiB
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": [
"ES2022"
],
"moduleResolution": "Bundler",
"outDir": "./dist",
"rootDir": "../..",
"baseUrl": "../..",
"paths": {
"@open-matrix/host-control": [
"packages/host-control/src/index.ts"
],
"@open-matrix/nats-auth": [
"packages/nats-auth/src/index.ts"
],
"@open-matrix/system-bindings": [
"packages/system-bindings/src/index.ts"
],
"@open-matrix/system-gateway-http": [
"packages/system-gateway-http/src/index.ts"
],
"@open-matrix/system-auth": [
"packages/system-auth/src/index.ts"
],
"@open-matrix/system-platform": [
"packages/system-platform/src/index.ts"
],
"@open-matrix/system-runtimes": [
"packages/system-runtimes/src/index.ts"
]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"resolveJsonModule": true,
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"tests"
]
}