From 7adb35064a5c7f0e884c041046b1fa7c4d4e0acd Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sun, 20 Aug 2017 21:39:13 +0200 Subject: [PATCH] Update README.md Add compilerOptions to tsconfig.json example --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0919a6a9..d43bd728 100644 --- a/README.md +++ b/README.md @@ -35,14 +35,16 @@ The default `tsconfig.json` file used by the plugin looks like this: ```json { - "preserveConstEnums": true, - "strictNullChecks": true, - "sourceMap": true, - "target": "es5", - "outDir": ".build", - "moduleResolution": "node", - "lib": ["es2015"], - "rootDir": "./" + "compilerOptions": { + "preserveConstEnums": true, + "strictNullChecks": true, + "sourceMap": true, + "target": "es5", + "outDir": ".build", + "moduleResolution": "node", + "lib": ["es2015"], + "rootDir": "./" + } } ```