From eac0aa15eb35106ec6f5fa3d80e5b8a5a0f78582 Mon Sep 17 00:00:00 2001 From: pedrocx486 Date: Sat, 11 Feb 2023 22:00:38 -0300 Subject: [PATCH] Update readme --- README.md | 2 +- tsconfig.node.json | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 213aafc..ea5ec5e 100755 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ An markdown editor for ngx-dumblog/retroblog. ## Caveats -Currently able to only create posts, it cannot edit the archive.json, so you have to edit it manually. +Currently able to create and edit posts, but can only load from file (not from blog install) and cannot edit the archive.json, so you have to edit it manually. ## Recommended IDE Setup diff --git a/tsconfig.node.json b/tsconfig.node.json index e993792..5001491 100755 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -2,7 +2,9 @@ "compilerOptions": { "composite": true, "module": "esnext", - "moduleResolution": "node" + "moduleResolution": "node", + "forceConsistentCasingInFileNames": true, + "strict": true }, "include": ["vite.config.ts"] }