diff --git a/images/icon.png b/images/icon.png new file mode 100644 index 0000000..eb1dc3d Binary files /dev/null and b/images/icon.png differ diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f63bd2d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "outDir": "dist", + "rootDir": "src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "resolveJsonModule": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}