Folo/apps/renderer/tsconfig.json

21 lines
478 B
JSON

{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"compilerOptions": {
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"target": "ES2022",
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": true,
"baseUrl": ".",
"noImplicitReturns": false,
"noEmit": true,
"skipLibCheck": true,
"paths": {
"~/*": ["src/*"],
"@pkg": ["../../package.json"],
"@locales/*": ["../../locales/*"]
}
}
}