Mercurial
comparison love/epi/tsconfig.node.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 "compilerOptions": { | |
| 3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", | |
| 4 "target": "ES2023", | |
| 5 "lib": ["ES2023"], | |
| 6 "module": "ESNext", | |
| 7 "types": ["node"], | |
| 8 "skipLibCheck": true, | |
| 9 | |
| 10 /* Bundler mode */ | |
| 11 "moduleResolution": "bundler", | |
| 12 "allowImportingTsExtensions": true, | |
| 13 "verbatimModuleSyntax": true, | |
| 14 "moduleDetection": "force", | |
| 15 "noEmit": true, | |
| 16 | |
| 17 /* Linting */ | |
| 18 "strict": true, | |
| 19 "noUnusedLocals": true, | |
| 20 "noUnusedParameters": true, | |
| 21 "erasableSyntaxOnly": true, | |
| 22 "noFallthroughCasesInSwitch": true, | |
| 23 "noUncheckedSideEffectImports": true, | |
| 24 | |
| 25 /* So lsp doesn't get mad */ | |
| 26 "baseUrl": ".", | |
| 27 "paths": { | |
| 28 "@/*": ["src/*"] | |
| 29 } | |
| 30 }, | |
| 31 "include": ["vite.config.ts"] | |
| 32 } |