a reactive (signals based) hypermedia web framework (wip)
stormlightlabs.github.io/volt/
hypermedia
frontend
signals
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "lib": ["ES2022"],
6 "moduleResolution": "bundler",
7 "resolveJsonModule": true,
8 "allowJs": true,
9 "strict": true,
10 "esModuleInterop": true,
11 "skipLibCheck": true,
12 "forceConsistentCasingInFileNames": true,
13 "declaration": true,
14 "declarationMap": true,
15 "outDir": "./dist",
16 "rootDir": "./src",
17 "paths": {
18 "$commands/*": ["./src/commands/*"],
19 "$templates/*": ["./src/templates/*"],
20 "$utils/*": ["./src/utils/*"]
21 }
22 },
23 "include": ["src/**/*"],
24 "exclude": ["node_modules", "dist", "tests"]
25}