comparison love/epi/tsconfig.json @ 38:cf9caa4abc3e

[Love] FE and BE. Can chat and render images. Also created MCP for powerpoint generations.
author MrJuneJune <me@mrjunejune.com>
date Mon, 01 Dec 2025 20:35:56 -0800
parents
children
comparison
equal deleted inserted replaced
37:fb9bcd3145cb 38:cf9caa4abc3e
1 {
2 "files": [],
3 "references": [
4 { "path": "./tsconfig.app.json" },
5 { "path": "./tsconfig.node.json" }
6 ],
7 "compilerOptions": {
8 "baseUrl": ".",
9 "paths": {
10 "@/*": ["src/*"]
11 }
12 }
13 }
14 // {
15 // "compilerOptions": {
16 // "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
17 // "target": "ES2022",
18 // "useDefineForClassFields": true,
19 // "lib": ["ES2022", "DOM", "DOM.Iterable"],
20 // "module": "ESNext",
21 // "skipLibCheck": true,
22 //
23 // /* Bundler mode */
24 // "moduleResolution": "bundler",
25 // "allowImportingTsExtensions": true,
26 // "verbatimModuleSyntax": true,
27 // "moduleDetection": "force",
28 // "noEmit": true,
29 // "jsx": "react-jsx",
30 // "jsxImportSource": "react", // ← ADD THIS LINE
31 // "types": ["vite/client"], // ← ADD THIS LINE (important for .tsx)
32 //
33 // // ←←← MOST IMPORTANT LINE FOR .tsx FILES ←←←
34 // "allowJs": true // ← ADD THIS LINE
35 //
36 // /* Strictness */
37 // "strict": true,
38 // "noUnusedLocals": true,
39 // "noUnusedParameters": true,
40 // "noFallthroughCasesInSwitch": true,
41 //
42 // /* THIS IS THE IMPORTANT PART */
43 // "baseUrl": ".",
44 // "paths": {
45 // "@/*": ["src/*"]
46 // }
47 // },
48 // "include": ["src/**/*", "vite.config.ts"],
49 // "exclude": ["node_modules", "dist"]
50 // }