source: frontend/tsconfig.json

main
Last change on this file was 700e2f9, checked in by 186079 <matej.milevski@…>, 5 days ago

Init

  • Property mode set to 100644
File size: 470 bytes
Line 
1{
2 "compilerOptions": {
3 // General
4 "jsx": "preserve",
5 "jsxImportSource": "solid-js",
6 "target": "ESNext",
7
8 // Modules
9 "allowSyntheticDefaultImports": true,
10 "esModuleInterop": true,
11 "isolatedModules": true,
12 "module": "ESNext",
13 "moduleResolution": "bundler",
14 "noEmit": true,
15 "baseUrl": ".",
16 "paths": {
17 "@/*": ["./src/*"]
18 },
19
20 // Type Checking & Safety
21 "strict": true,
22 "types": ["vite/client"]
23 }
24}
Note: See TracBrowser for help on using the repository browser.