From 11926b3bc87923e3564365524f57b43d13a0e94e Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Fri, 12 Feb 2021 18:38:25 +0100 Subject: [PATCH] chore(react-menu): switch to TS path aliases config --- packages/react-menu/tsconfig.json | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) 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"] }