Files
everyone-can-use-english/enjoy/tsconfig.json
an-lee 5efc5fc1db Feat: AI commands (#145)
* 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
2024-01-19 16:52:49 +08:00

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"]
}