Hi, I am use electron-store, version 8.2.0 with node version v18.19.1
when I use follow code:
const store = new Store();
it will give me follow error:
SyntaxError: Bad control character in string literal in JSON at position 3
I also try other way like
`const schema: Schema = {
// type: 'object',
userPath: { type: 'string' }
};
const store = new Store<SchemaData>({ schema });`
Hi, I am use electron-store, version 8.2.0 with node version v18.19.1 when I use follow code:
const store = new Store();
it will give me follow error: SyntaxError: Bad control character in string literal in JSON at position 3I also try other way like `const schema: Schema = {
// type: 'object',
userPath: { type: 'string' }
but still encount the same error