btoa() only handles Latin-1. Use TextEncoder + binaryToBase64 for encoding and TextDecoder + base64ToBinary for decoding the internal OpenPencil clipboard format.
26 lines
690 B
JSON
26 lines
690 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"],
|
|
"exclude": ["src/kiwi/index.ts", "src/kiwi/client.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|