tooling for browser js

This commit is contained in:
2025-10-15 00:06:45 -05:00
parent b809e647e8
commit 893eb6f801
8 changed files with 46 additions and 15 deletions

26
tsconfig.web.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "bundler",
"lib": [
"DOM",
"DOM.Iterable",
"ES2020"
],
"outDir": "scripts",
"rootDir": "scripts",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"allowJs": false,
"resolveJsonModule": true
},
"include": [
"scripts/**/*"
],
"exclude": [
"node_modules"
]
}