* fix(app): use the same CSP during `tauri dev` as `tauri build` * chore(app-frontend): make Vite WS CSP policy a bit more strict * tweak: make Tauri CSP config object readable again At the cost of some extra code in the Vite config side, but I think it's worth it. * chore: fix linter warning in app frontend introduced who knows where else We need a Git hook to ensure these things aren't pushed only to explode later on or something.
19 lines
369 B
JSON
19 lines
369 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|