chore: generate sdk into packages/sdk
This commit is contained in:
38
packages/sdk/tsconfig.json
Normal file
38
packages/sdk/tsconfig.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"include": ["src", "tests", "examples"],
|
||||
"exclude": [],
|
||||
"compilerOptions": {
|
||||
"target": "es2020",
|
||||
"lib": ["es2020"],
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"baseUrl": "./",
|
||||
"paths": {
|
||||
"@opencode-ai/sdk/*": ["src/*"],
|
||||
"@opencode-ai/sdk": ["src/index.ts"]
|
||||
},
|
||||
"noEmit": true,
|
||||
|
||||
"resolveJsonModule": true,
|
||||
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
||||
"strict": true,
|
||||
"noImplicitAny": true,
|
||||
"strictNullChecks": true,
|
||||
"strictFunctionTypes": true,
|
||||
"strictBindCallApply": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"noImplicitThis": true,
|
||||
"noImplicitReturns": true,
|
||||
"alwaysStrict": true,
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"isolatedModules": false,
|
||||
|
||||
"skipLibCheck": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user