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"] }