0

I'm getting this error message:

./src/Home/home.scss (./node_modules/css-loader/dist/cjs.js??ref--5-oneOf-6-1!./node_modules/postcss-loader/src??postcss!./node_modules/resolve-url-loader??ref--5-oneOf-6-3!./node_modules/sass-loader/dist/cjs.js??ref--5-oneOf-6-4!./src/Home/home.scss) Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (108) For more information on which environments are supported please see: https://github.com/sass/node-sass/releases/tag/v6.0.1

Here is my is my package.json:

{
    "resolutions": { "react-error-overlay": "6.0.9" },
    "dependencies": {
        "@reduxjs/toolkit": "^1.6.1",
        "@types/node": "^12.0.0",
        "@types/react": "^17.0.0",
        "@types/react-dom": "^17.0.0",
        "@types/react-router-dom": "^5.1.8",
        "node-sass": "^6.0.1",
        "react": "^17.0.2",
        "react-content-loader": "^6.0.3",
        "react-dom": "^17.0.2",
        "react-loading-skeleton": "^2.2.0",
        "react-redux": "^7.2.4",
        "react-router-dom": "^5.2.0",
        "react-toastify": "^7.0.4",
        "typescript": "^4.1.2",
        "web-vitals": "^1.0.1"
    },
    "devDependencies": {
        "@nomiclabs/hardhat-ethers": "^2.0.2",
        "@nomiclabs/hardhat-etherscan": "^2.1.5",
        "@nomiclabs/hardhat-waffle": "^2.0.1",
        "@testing-library/jest-dom": "^5.11.4",
        "@testing-library/react": "^11.1.0",
        "@testing-library/user-event": "^12.1.10",
        "@types/jest": "^26.0.15",
        "chai": "^4.3.4",
        "colors": "^1.4.0",
        "ethereum-waffle": "^3.4.0",
        "ethers": "^5.4.5",
        "hardhat": "^2.6.2",
        "hardhat-deploy": "^0.9.3",
        "react-scripts": "5.0.1"
    },
    "scripts": {
        "start": "react-scripts --openssl-legacy-provider start",
        "build": "./build.sh",
        "build1": "set \"GENERATE_SOURCEMAP=false\" && react-scripts build",
        "testui": "react-scripts test",
        "eject": "react-scripts eject",
        "compile": "npx hardhat compile",
        "test": "npx hardhat test",
        "clean": "rm -rf build/static/js/*.map",
        "clean-win": "del build/static/js/*.map",

        "local": "npx hardhat run --network localhost scripts/deploy-eth.js",

        "ftm": "npx hardhat run --network ftm scripts/deploy-ftm.js",
        "tftm": "npx hardhat run --network tftm scripts/deploy-ftm.js",
        "btc": "npx hardhat run --network btc scripts/deploy.js",
        "tbtc": "npx hardhat run --network localhost scripts/deploy.js"
    },
    "eslintConfig": {
        "extends": [
            "react-app",
            "react-app/jest"`your text`
        ]
    },
    "browserslist": {
        "production": [
            ">0.2%",
            "not dead",
            "not op_mini all"
        ],
        "development": [
            "last 1 chrome version",
            "last 1 firefox version",
            "last 1 safari version"
        ]
    }`
}

This is my tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
        "lib": ["es5", "es6", "es2017", "es2020", "dom"],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "noEmit": true,
    "jsx": "react-jsx",
    "isolatedModules": true,
    "noImplicitAny": false
  },
  "include": [
    "src"
  ],
  "typeRoots": [
    "./node_modules/@types",
    "./src/@types"
  ]
}

If you know about it, please send me answer. Thank you.

Volkorp
  • 180
  • 1
  • 10
rabbit0516
  • 11
  • 1
  • Check if one of these answers fit for you: https://stackoverflow.com/questions/64612707/node-sass-does-not-yet-support-your-current-environment-windows-64-bit-with-uns or https://stackoverflow.com/questions/70676490/error-node-sass-does-not-yet-support-your-current-environment-windows-64-bit-w – Volkorp Feb 07 '23 at 07:31

0 Answers0