diff --git a/src/config/tsconfig.json b/src/config/tsconfig.json index d8798fdb..4082f16a 100644 --- a/src/config/tsconfig.json +++ b/src/config/tsconfig.json @@ -1,25 +1,3 @@ { - "compilerOptions": { - "alwaysStrict": true, - "declaration": true, - "esModuleInterop": true, - "importHelpers": true, - "jsx": "react", - "lib": ["dom", "esnext"], - "module": "esnext", - "moduleResolution": "node", - "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, - "noImplicitReturns": true, - "noImplicitThis": true, - "noUnusedLocals": false, - "noUnusedParameters": true, - "resolveJsonModule": true, - "sourceMap": true, - "strict": true, - "strictFunctionTypes": true, - "strictNullChecks": true, - "strictPropertyInitialization": true, - "target": "es5" - } + "extends": "../../tsconfig.json" } diff --git a/tsconfig.json b/tsconfig.json index 9ec86ea2..d8798fdb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,25 @@ { - "extends": "./dist/config/tsconfig", "compilerOptions": { - "allowJs": true + "alwaysStrict": true, + "declaration": true, + "esModuleInterop": true, + "importHelpers": true, + "jsx": "react", + "lib": ["dom", "esnext"], + "module": "esnext", + "moduleResolution": "node", + "noFallthroughCasesInSwitch": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noUnusedLocals": false, + "noUnusedParameters": true, + "resolveJsonModule": true, + "sourceMap": true, + "strict": true, + "strictFunctionTypes": true, + "strictNullChecks": true, + "strictPropertyInitialization": true, + "target": "es5" } }