42 lines
948 B
JSON
42 lines
948 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022"],
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"isolatedModules": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": [
|
|
"core/**/*.ts",
|
|
"agent-contract/**/*.ts",
|
|
"server/**/*.ts",
|
|
"bridge/**/*.ts",
|
|
"adapters/openclaw/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"bridge.cts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"viewer",
|
|
"adapters/hermes"
|
|
]
|
|
}
|