Skip to content

Commit

Permalink
json
Browse files Browse the repository at this point in the history
  • Loading branch information
aghull committed Mar 22, 2024
1 parent 0a44fc1 commit c53ea02
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
29 changes: 23 additions & 6 deletions game.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,36 @@
"ui": {
"root": ".",
"build": {
"dev": ["npm run tsc", "npm run build:ui"],
"prod": ["npm run tsc", "npm run build:ui:prod"]
"dev": [
"npm run tsc",
"npm run build:ui"
],
"prod": [
"npm run tsc",
"npm run build:ui:prod"
]
},
"watchPaths": ["src/ui", "src/game"],
"watchPaths": [
"src/ui",
"src/game"
],
"outDir": "build/ui"
},
"game": {
"root": ".",
"build": {
"dev": ["npm run tsc", "npm run build:game"],
"prod": ["npm run tsc", "npm run build:game:prod"]
"dev": [
"npm run tsc",
"npm run build:game"
],
"prod": [
"npm run tsc",
"npm run build:game:prod"
]
},
"watchPaths": ["src/game"],
"watchPaths": [
"src/game"
],
"out": "build/game/game-interface.js"
}
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"strictNullChecks": true,
"jsx": "react",
"resolveJsonModule": true,
"skipLibCheck": true
"skipLibCheck": true,
"incremental": true
},
"include": ["src", "./index.d.ts"],
"exclude": ["**/node_modules", "**/.*/"]
Expand Down

0 comments on commit c53ea02

Please sign in to comment.