mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-01 15:30:52 +08:00
24 lines
628 B
JSON
24 lines
628 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@limecloud/app-server-client": [
|
|
"packages/app-server-client/src/index.ts"
|
|
],
|
|
"app-server-client": ["packages/app-server-client/src/index.ts"]
|
|
},
|
|
"types": ["node", "electron"],
|
|
"noEmit": true
|
|
},
|
|
"include": ["electron/**/*.ts", "packages/app-server-client/src/**/*.ts"]
|
|
}
|