Skip to content

Commit

Permalink
chore(react-menu): switch to TS path aliases config
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell committed Feb 12, 2021
1 parent aac30b4 commit 11926b3
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions packages/react-menu/tsconfig.json
Original file line number Diff line number Diff line change
@@ -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"]
}

0 comments on commit 11926b3

Please sign in to comment.