zmk/docs/tsconfig.json
Joel Spadin 08d9391a8a feat(keymap-upgrader): Upgrade renamed nodes
Added an upgrade function to fix renamed behavior nodes in the unlikely
event that someone was changing behavior settings this way instead of
using references.
2024-01-25 18:03:37 -06:00

14 lines
309 B
JSON

{
"extends": "@docusaurus/tsconfig",
"include": ["src/"],
"compilerOptions": {
"types": ["node", "@docusaurus/theme-classic"],
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": true,
"noEmit": true,
"target": "ES6",
"lib": ["ES2022", "DOM", "DOM.Iterable"]
}
}