add cursor

This commit is contained in:
2025-09-26 19:49:56 +07:00
parent ae7f2cd114
commit 5deae69553
54 changed files with 2763 additions and 6644 deletions

View File

@@ -1,6 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "nodenext",
"moduleResolution": "nodenext",
"resolvePackageJsonExports": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
@@ -12,11 +16,10 @@
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"lib": ["dom"] // dom.value is required for the browser
"noFallthroughCasesInSwitch": false
}
}
}