First commit: /a/, /gallery/, images, gifv

This commit is contained in:
3nprob
2021-10-06 18:43:59 +09:00
commit 7c2e53c6e4
19 changed files with 6559 additions and 0 deletions

17
tsconfig.json Executable file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"noImplicitAny": true,
"strictNullChecks": true,
"declaration": true,
"sourceMap": false,
"outDir": "dist",
"typeRoots": [
"src/types/"
]
},
"include": [
"src/**/*"
]
}