File size: 529 Bytes
3d7d9b5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"tasks": {
"dev": "deno run -A npm:vite --port 1420 --host",
"build": "deno run -A npm:vite build",
"preview": "deno run -A npm:vite preview",
"tauri": "deno run -A npm:@tauri-apps/cli"
},
"imports": {
"react": "npm:react@^19",
"react-dom": "npm:react-dom@^19",
"react/jsx-runtime": "npm:react@^19/jsx-runtime"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"lib": ["dom", "dom.iterable", "esnext"]
},
"nodeModulesDir": "auto"
}
|