diff --git a/tsconfig.base.json b/tsconfig.base.json index a8569db..534c091 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,22 +1,24 @@ { "compilerOptions": { + "allowJs": true, "allowSyntheticDefaultImports": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "declaration": true, "declarationMap": false, "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "module": "commonjs", "moduleResolution": "node", - "noImplicitReturns": true, "noImplicitAny": true, + "noImplicitReturns": true, "noUnusedLocals": true, "noUnusedParameters": true, "pretty": true, - "allowJs": true, + "skipLibCheck": true, "sourceMap": false, "strict": true, - "target": "ES2017", // Follow NodeJS oldest supported LTS and compare with https://node.green - "module": "commonjs" + "target": "ES2017" // Follow NodeJS oldest supported LTS and compare with https://node.green }, "exclude": [ "node_modules"