Adam Purdy

Results 12 comments of Adam Purdy

Same experience here. Cloned the repo for the standard test app. Environment: MacBook Pro (2021) with M1 Max MacOS Monterrey 12.5 Xcode version 13.4.1

I was experiencing this same problem. I followed along here: http://babeljs.io/docs/en/next/babel-plugin-transform-runtime Basically I removed the old babel runtime in my package.json : `"@babel/runtime": "^7.0.0-beta.56"`, and replaced it with: `"@babel/runtime-corejs2": "^7.0.0",`....

@wooliet did you try the approach I posted? You need to update your package.json & your .bablerc in the plugins array.

@wooliet Oh interesting, just curious, but what dependency was the issue for you guys?

@benadamstyles I had the same issue. I removed the hashing option in the config like another user mentioned.

Same issue. Would love to dynamically change the mask pattern via the directive on a custom input in Quasar.

Seeing the same. I ran it to get :saved and about a quarter of the way in it threw an error about not finding a hi-res resource, then when I...

Sure thing: tsconfig.json ``` { "extends": "./node_modules/gts/tsconfig-google.json", "include": ["src/**/*.ts"], "compilerOptions": { "esModuleInterop": true, "rootDir": ".", "outDir": "build", "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, "noImplicitAny": false, "resolveJsonModule": true } } ```...

When I did that the terminal threw an error saying: "error TS5110: Option 'module' must be set to 'NodeNext' when option 'moduleResolution' is set to 'NodeNext'." I did that and...

@kenneth-rosario I was able to access the getTestServer function via this assignment: const getTestServer = require('@google-cloud/functions-framework') I then did a little inspection of what was being returned via these three...