Personal save-for-later and Miniflux e-reader proxy for Xteink X4 (wip)
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "Bundler",
6 "strict": true,
7 "noUncheckedIndexedAccess": true,
8 "esModuleInterop": true,
9 "skipLibCheck": true,
10 "resolveJsonModule": true,
11 "allowSyntheticDefaultImports": true,
12 "forceConsistentCasingInFileNames": true,
13 "jsx": "react-jsx",
14 "jsxImportSource": "preact",
15 "lib": ["ES2022", "DOM", "DOM.Iterable"],
16 "types": ["node"],
17 "baseUrl": ".",
18 "paths": {
19 "@shared/*": ["src/shared/*"]
20 }
21 },
22 "include": ["src/**/*"],
23 "exclude": ["node_modules", "dist"]
24}