add strikethroughs

This commit is contained in:
stjet
2024-02-08 22:44:47 +00:00
parent 41675a5099
commit b32fe228d2
6 changed files with 128 additions and 26 deletions

18
tsconfig-node.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"strict": true,
"moduleResolution": "node",
"typeRoots": [
"./node_modules/@types",
],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"exclude": [
"node_modules",
".build"
]
}