alternative tangled frontend (extremely wip)
1{
2 "include": [
3 "**/*.ts",
4 "**/*.tsx",
5 "eslint.config.js",
6 "prettier.config.js",
7 "vite.config.js"
8 ],
9
10 "compilerOptions": {
11 "target": "ES2022",
12 "jsx": "react-jsx",
13 "module": "ESNext",
14 "lib": ["ES2022", "DOM", "DOM.Iterable"],
15 "types": ["vite/client"],
16
17 /* Bundler mode */
18 "moduleResolution": "bundler",
19 "allowImportingTsExtensions": true,
20 "verbatimModuleSyntax": false,
21 "noEmit": true,
22
23 /* Linting */
24 "skipLibCheck": true,
25 "strict": true,
26 "noUnusedLocals": true,
27 "noUnusedParameters": true,
28 "noFallthroughCasesInSwitch": true,
29 "noUncheckedSideEffectImports": true,
30 "baseUrl": ".",
31 "paths": {
32 "@/*": ["./src/*"]
33 }
34 }
35}