You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
{
|
|
"imports": {
|
|
"@app/": "./src/",
|
|
"@public/": "./public/",
|
|
"@pages/": "./src/pages/",
|
|
"@components/": "./src/components/",
|
|
"@core/": "./src/core/",
|
|
"@layouts/": "./src/layouts/",
|
|
"@std/path": "jsr:@std/path@^1.1.0"
|
|
},
|
|
"tasks": {
|
|
"build": "vite build",
|
|
"build:analyze": "BUNDLE_ANALYZE=true deno task build",
|
|
"lint": "deno lint src/",
|
|
"lint:fix": "deno lint --fix src/",
|
|
"format": "deno fmt src/",
|
|
"dev": "deno task dev:ui",
|
|
"dev:ui": "VITE_APP_VERSION=development deno run -A npm:vite dev",
|
|
"test": "deno run -A npm:vitest",
|
|
"check": "deno check",
|
|
"preview": "deno run -A npm:vite preview",
|
|
"generate:routes": "deno run -A npm:@tanstack/router-cli generate --outDir src/ routes --rootRoutePath /",
|
|
"package": "gzipper c -i html,js,css,png,ico,svg,json,webmanifest,txt dist dist/output && tar -cvf dist/build.tar -C ./dist/output/ ."
|
|
},
|
|
"include": ["src", "./vite-env.d.ts"],
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext",
|
|
"deno.window",
|
|
"deno.ns"
|
|
],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictNullChecks": true,
|
|
"types": [
|
|
"vite/client",
|
|
"node",
|
|
"npm:@types/w3c-web-serial",
|
|
"npm:@types/web-bluetooth"
|
|
],
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"exclude": [
|
|
"routeTree.gen.ts",
|
|
"node_modules/",
|
|
"dist",
|
|
"build",
|
|
"coverage",
|
|
"out",
|
|
".vscode-test"
|
|
]
|
|
}
|
|
|