Nate Tippie

Results 11 comments of Nate Tippie

`tsconfig.build.json` ```json { "extends": "./tsconfig.json", "compilerOptions": { "composite": false } } ``` `$ ts-json-schema-generator -f ./tsconfig.build.json` This resolved it for me.

I agree the ESM build output seems incorrect, I added `.js` extensions to all imports in `@typedorm/*/esm/*.{js,ts}` and then my own imports worked correctly. `[email protected]`. Workaround for now is to...

I found some additional information [here](https://devforum.play.date/t/playdate-sdk-support-for-luacheck/6887). This seems to be sufficient for `.luacheckrc`: ``` std = "lua54+playdate" operators = {"+=", "-=", "*=", "/="} ```

Either `--no-sandbox` or `--disable-seccomp-filter-sandbox` both fix the issue for me.

I was not able to properly customize the logo via CDK AwsCustomResource. `ImageFile: readFileSync('./assets/auth/logo.png').toString('base64')` correctly synthesizes `\"ImageFile\":\"iVBORw0KGgoAAA.....QmCC\"` and successfully deploys. However, when downloading the deployed logo, it's a JPG whose...

@Xenoha are you passing this directly to aws-sdk client? My image file is being serialized into base64 and synthesized for Cfn properly. It's the AwsCustomResource that is not working properly...

Thanks, fixed my issue after doing all previously mentioned changes. I removed the nvapi*.dll overrides and re-enabled Fsync (FSR and anticheat were already off from default install I believe) and...

Great documentation, thank you. Perhaps there is more to learn from the Push 3 standalone which runs on Linux. Have you considered WINE compatibility with Ableton Push? I tried using...

I ran into this issue when trying to cast a generated schema to the SomeJSONSchema type. My root object had only `$schema` and `definitions`, and it was mistakenly thinking the...

```js import { SomeJSONSchema } from 'ajv/dist/types/json-schema'; import AppSchema from './schema.json'; // TODO for some reason can't pass in whole AppSchema because TS thinks definitions is an array // https://github.com/ajv-validator/ajv/issues/2223...