Initial Commit

This commit is contained in:
DrunkOatmeal
2023-07-13 13:28:59 +07:00
commit 7b31cd163b
16 changed files with 2823 additions and 0 deletions

22
tsconfig.json Normal file
View File

@ -0,0 +1,22 @@
{
"compilerOptions": {
"outDir": "dist",
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"noEmit": true,
"isolatedModules": true,
"types": [
"vite-userscript-plugin/types/tampermonkey",
"vite/client"
]
},
"include": [
"src/**/*"
]
}