mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-08 04:18:29 +00:00
Migrates away from using a standalone renderer and mobx for plumbing. Previously there was a lot of manual syncing needed between the React UI and the Renderer, which added a lot of overhead and complexity. Scene state is now held in a store (facilitated by Zustand). This acts as a single source of truth shared over the renderer and the UI, and both react to changes on the store.
23 lines
405 B
JSON
23 lines
405 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"src/*": [
|
|
"./src/*"
|
|
],
|
|
},
|
|
"outDir": "./dist",
|
|
"noImplicitAny": true,
|
|
"module": "es6",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"baseUrl": "./",
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
}
|