mirror of
https://github.com/meshtastic/web.git
synced 2026-04-19 05:17:08 -04:00
* fixed tsc errors * fixed tsc errors * fixed tsc errors * fixing tsc errors * fixing more tsc errors * fixing more tsc errors * fixed tsc errors * fixing tsc errors * fixing PR issues * commented out tsc check * completing tsc fixes * updating lockfile * removed react-hooks
61 lines
1.1 KiB
JSON
61 lines
1.1 KiB
JSON
{
|
|
"imports": {
|
|
"@app/": "./src/",
|
|
"@pages/": "./src/pages/",
|
|
"@components/": "./src/components/",
|
|
"@core/": "./src/core/",
|
|
"@layouts/": "./src/layouts/",
|
|
"@std/path": "jsr:@std/path@^1.1.0"
|
|
},
|
|
"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
|
|
},
|
|
"fmt": {
|
|
"exclude": [
|
|
"src/routeTree.gen.ts",
|
|
"*.test.ts",
|
|
"*.test.tsx"
|
|
]
|
|
},
|
|
"lint": {
|
|
"exclude": [
|
|
"src/routeTree.gen.ts",
|
|
"*.test.ts",
|
|
"*.test.tsx"
|
|
],
|
|
"report": "pretty"
|
|
},
|
|
"exclude": [
|
|
"routeTree.gen.ts",
|
|
"node_modules/",
|
|
"dist",
|
|
"build",
|
|
"coverage",
|
|
"out",
|
|
".vscode-test"
|
|
],
|
|
"unstable": [
|
|
"sloppy-imports"
|
|
]
|
|
}
|