Files
2026-07-13 12:58:18 +08:00

19 lines
570 B
JSON

{
"extends": "@copilotkit/typescript-config/base.json",
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "Bundler",
// Pin auto-included @types so stray global type packages in ancestor
// node_modules directories cannot change what this package typechecks
// against (tsc walks up from the package looking for @types).
"types": ["node"],
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"]
}