From 1806abb2b2775d2fff9efd1235c88a6f5e0d6a1d Mon Sep 17 00:00:00 2001 From: rakannimer Date: Tue, 27 Aug 2019 14:41:05 +0300 Subject: [PATCH] fix(docz-example-typescript): add externally usable tsconfig --- examples/typescript/tsconfig.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/typescript/tsconfig.json b/examples/typescript/tsconfig.json index d0a44ea32..3b633e093 100644 --- a/examples/typescript/tsconfig.json +++ b/examples/typescript/tsconfig.json @@ -1,11 +1,11 @@ { - "extends": "../../tsconfig.json", "compilerOptions": { - "outDir": "dist", - "rootDir": "src", - "declaration": true, - "typeRoots": ["../../node_modules/@types", "node_modules/@types"] - }, - "include": ["src/**/*"], - "exclude": ["node_modules/**"] + "target": "es2015", + "moduleResolution": "node", + "strict": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "skipLibCheck": false, + "noEmit": true + } }