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

22
tsconfig-web.json Normal file
View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"moduleResolution": "classic",
"typeRoots": [
"./node_modules/@types",
],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"lib": [
"ESNext",
"DOM"
],
"exclude": [
"node_modules",
".build"
]
}