mistykey/packages/shared/jsconfig.web.json
2025-11-05 19:40:49 -05:00

26 lines
534 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"noEmit": true,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Bundler",
"types": [],
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"noLib": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"incremental": true
},
"compileOnSave": false,
"exclude": [
"node_modules",
"built",
"coverage",
"**/*.ts"
]
}