mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 21:41:40 +00:00

* JSdoc in htmx.js + generated TypeScript definition * Tsc trick to avoid inlining functions and reduce diff * Replace Queryable with ParentNode * Simplify getRawAttribute type check
20 lines
317 B
JSON
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
|
|
}
|