* upgrade deps * add extract command * add lookup.command * update lookup command * fix locals * may lookup one by one * update lookup method * add translate command * cache translation by default * open ai default settings * use openai config in context * refactor * genreate ipa * update UI * handle ai generate fail
27 lines
630 B
JSON
27 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@renderer/*": ["./src/renderer/*"],
|
|
"@main/*": ["./src/main/*"],
|
|
"@commands": ["./src/commands"]
|
|
},
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": ["src"]
|
|
}
|