Browse Source

react-app-alias lib 변경

master
김장현 8 months ago
parent
commit
ff6cbbd418
  1. 8
      package-lock.json
  2. 2
      package.json
  3. 10
      tsconfig.json

8
package-lock.json generated

@ -21526,10 +21526,10 @@
} }
} }
}, },
"react-app-rewire-aliases": { "react-app-rewire-alias": {
"version": "0.2.0", "version": "1.1.7",
"resolved": "https://registry.npmjs.org/react-app-rewire-aliases/-/react-app-rewire-aliases-0.2.0.tgz", "resolved": "https://registry.npmjs.org/react-app-rewire-alias/-/react-app-rewire-alias-1.1.7.tgz",
"integrity": "sha1-71/8AJnuwFJ5lJ+rjUmDwVVqHB4=", "integrity": "sha512-vn4xU3E/wzh2/fGxda9ZQ6CtW2XdZB/WxAgNOdNPyUcX3hA3mh+kCRGwo19gSjzeTPpoZQwZRblHabLr6mwOTw==",
"dev": true "dev": true
}, },
"react-app-rewire-postcss": { "react-app-rewire-postcss": {

2
package.json

@ -145,7 +145,7 @@
"eslint-plugin-react-hooks": "^1.7.0", "eslint-plugin-react-hooks": "^1.7.0",
"node-sass": "^4.13.1", "node-sass": "^4.13.1",
"prettier": "^2.3.1", "prettier": "^2.3.1",
"react-app-rewire-aliases": "^0.2.0", "react-app-rewire-alias": "1.1.7",
"react-app-rewire-postcss": "^3.0.2", "react-app-rewire-postcss": "^3.0.2",
"react-app-rewire-sass-rule": "^2.1.1", "react-app-rewire-sass-rule": "^2.1.1",
"react-app-rewired": "^2.1.6", "react-app-rewired": "^2.1.6",

10
tsconfig.json

@ -1,7 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es6", "target": "es6",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"noImplicitAny": false, "noImplicitAny": false,
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
@ -17,6 +21,8 @@
"jsx": "react-jsx", "jsx": "react-jsx",
"noFallthroughCasesInSwitch": true "noFallthroughCasesInSwitch": true
}, },
"include": ["src"], "include": [
"src"
],
"extends": "./tsconfig.paths.json" "extends": "./tsconfig.paths.json"
} }

Loading…
Cancel
Save