htmx/jsconfig.json
Vincent f004978bbb
JSdoc in htmx.js + generated TypeScript definition (#2336)
* JSdoc in htmx.js + generated TypeScript definition

* Tsc trick to avoid inlining functions and reduce diff

* Replace Queryable with ParentNode

* Simplify getRawAttribute type check
2024-02-21 15:34:59 -06:00

20 lines
317 B
JSON

{
"compilerOptions": {
"allowJs": true,
"declaration": true,
"noEmit": false,
"emitDeclarationOnly": true,
"outFile": "src/htmx.d.ts",
"target": "es6",
"checkJs": true,
"lib": [
"dom",
"dom.iterable"
]
},
"include": [
"./src/htmx.js"
],
"verbose": true
}