diff --git a/packages/react-menu/tsconfig.json b/packages/react-menu/tsconfig.json index dfb68aa05fcb9a..cb2dfadd5f8eb0 100644 --- a/packages/react-menu/tsconfig.json +++ b/packages/react-menu/tsconfig.json @@ -1,23 +1,16 @@ { + "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": ".", + "target": "ES5", + "lib": ["ES5", "dom"], "outDir": "dist", - "target": "es5", - "module": "commonjs", "jsx": "react", "declaration": true, - "sourceMap": true, "experimentalDecorators": true, "importHelpers": true, "noUnusedLocals": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "moduleResolution": "node", "preserveConstEnums": true, - "lib": ["es5", "dom"], - "skipLibCheck": true, - "typeRoots": ["../../node_modules/@types", "../../typings"], - "types": ["jest", "webpack-env", "custom-global"] + "types": ["jest", "custom-global"] }, "include": ["src"] }