a reactive (signals based) hypermedia web framework (wip) stormlightlabs.github.io/volt/
hypermedia frontend signals
at main 17 lines 531 B view raw
1import path from "node:path"; 2import { fileURLToPath } from "node:url"; 3import { defineConfig } from "vitest/config"; 4 5const __dirname = path.dirname(fileURLToPath(import.meta.url)); 6 7export default defineConfig({ 8 test: { exclude: [], watch: false }, 9 resolve: { 10 alias: { 11 $commands: path.resolve(__dirname, "./src/commands"), 12 $utils: path.resolve(__dirname, "./src/utils"), 13 $versioning: path.resolve(__dirname, "./src/versioning"), 14 $console: path.resolve(__dirname, "./src/console"), 15 }, 16 }, 17});