mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 08:31:50 +03:00
25d1007a9e
- Fixes #9482 - Add URL rewriting logic to `npm run dev` in `app/gui2/` so that "download" actions work # Important Notes - ⚠️ `config.yaml` HAS BEEN REMOVED in favor of `config.json`. - Most of the keys have been removed as they were only used by GUI1. - This is a REQUIRED change, because the vite dev server does not seem to like importing yaml files when running `vite.config.ts`.
10 lines
191 B
JSON
10 lines
191 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"skipLibCheck": false
|
|
},
|
|
"include": ["./src/", "../common/src/config.json"]
|
|
}
|