diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-19 18:36:11 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-19 18:36:35 +0200 |
commit | 2afbf0ec7e6a21495e0e4390c3b35040e4c9ad44 (patch) | |
tree | c668a364ac8cd8c2e5c5ec249b4ff7ec3842fe5a | |
parent | 00ddc1fa60bdc9a6679c52bc8b3832ee837cc812 (diff) | |
download | plantagenet-2afbf0ec7e6a21495e0e4390c3b35040e4c9ad44.tar.gz |
Enable source maps.
-rw-r--r-- | play.js | 2 | ||||
-rw-r--r-- | tsconfig.json | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -217,7 +217,7 @@ const asset_type_x34 = [ 1, 1, 1, 0 ] const NOWHERE = -1 const CALENDAR = 100 -const LONDON_FOR_YORK = 200 as Locale // extra london marker +const LONDON_FOR_YORK = 200 const VASSAL_READY = 29 const VASSAL_CALENDAR = 30 diff --git a/tsconfig.json b/tsconfig.json index 04ec81b..2c18f4b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "target": "es2016", "declaration": true, + "sourceMap": true, "strict": false, //"strictNullChecks": true, |