From dc982c31c6ce37c7a66963f6eda07feef6eae8c8 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Thu, 6 May 2021 09:28:44 +0530 Subject: [PATCH] tsconfig --- tsconfig.json | 42 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 13573aec..e435d0dc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,41 @@ { - "compilerOptions": { - "sourceMap": true - } + "compilerOptions": { + "incremental": true, + "target": "es5", + "module": "es6", + "allowJs": false, + "sourceMap": true, + "outDir": "./static-assets/bundle", + "rootDir": "./templates/", + "removeComments": true, + "moduleResolution": "node", + + //"strict": true, + "noImplicitAny": true, + //"strictNullChecks": true, + //"strictFunctionTypes": true, + //"strictBindCallApply": true, + //"strictPropertyInitialization": true, + //"noImplicitThis": true, + //"alwaysStrict": true, + + //"noUnusedLocals": true, + //"noUnusedParameters": true, + //"noImplicitReturns": true, + //"noFallthroughCasesInSwitch": true, + //"noUncheckedIndexedAccess": true, + //"noPropertyAccessFromIndexSignature": true, + + "esModuleInterop": true, + + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true + }, + "exclude": [ + "node_modules", + "static", + "docs", + "jest.config.ts", + "**/*.test.ts" + ] }