mirror of
https://github.com/TencentCloud/TencentDB-Agent-Memory
synced 2026-07-10 20:34:30 +00:00
19 lines
446 B
JSON
19 lines
446 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["index.ts", "src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "tests"]
|
|
}
|