mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
39 lines
945 B
JSON
39 lines
945 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Path aliases */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@openhuman/skill-types": ["src/lib/skills/types.ts"],
|
|
"tauri-plugin-ptt-api": ["../packages/tauri-plugin-ptt/guest-js/index.ts"]
|
|
},
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test/*.test.ts",
|
|
"test/*.test.tsx",
|
|
"../packages/tauri-plugin-ptt/guest-js/index.ts"
|
|
],
|
|
"exclude": ["skills"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|