Migrate to yarn

This commit is contained in:
2022-07-07 00:51:28 +03:00
parent 1af1048670
commit 78fd1b5adf
32 changed files with 10289 additions and 20356 deletions

20
gather/tsconfig.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"allowJs": true,
"checkJs": false,
"outDir": "dist",
"rootDir": ".",
"strict": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"esModuleInterop": true,
},
"exclude": ["node_modules", "dist"],
"include": [
"./src",
"./*",
]
}