Fayelure

Results 17 issues of Fayelure

In the example: ``` const JsonToTS = require('json-to-ts') const json = { cats: [ {name: 'Kittin'}, {name: 'Mittin'} ], favoriteNumber: 42, favoriteWord: 'Hello' } JsonToTS(json).forEach( typeInterface => { console.log(typeInterface) })...

Could we get literal string support? ![image](https://github.com/jvilk/MakeTypes/assets/38708022/a086b5f8-a020-466c-ac8b-e0525795b790) In this example, I would want `key` to be a string literal ``` {"objecte":[{"key":"dwdwdw"},{"key":"fffr"}]} ```

Adds a check in VRMexporterv0 to check the bone count when exporting; to be honest this should probably be done when loading the VRMs;

Brings in JSON schema to validate and enforce typing on manifest schema

PR splits the framing and camera logic into its own class; I also changes the ecmaVersion to 2022 (13) for cleaner code

Is there a significant difference between `createTextureAtlasNode` and `createTextureAtlasBrowser` ? (apart from the fact that node doesnt have DOM) I have a feeling they're not that super different. And it's...

We have the condition `if(mesh.material.type === "MeshStandardMaterial")` but material can be an array, so the condition will always be false. This fixes it