queue/tsconfig.json

20 lines
328 B
JSON
Raw Permalink Normal View History

2020-11-11 17:17:37 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
2023-04-07 10:37:37 +00:00
"jsx": "react-jsx",
"jsxImportSource": "preact",
2020-11-11 17:17:37 +00:00
"lib": [
2023-04-07 10:37:37 +00:00
"DOM",
"ES2022"
2020-11-11 17:17:37 +00:00
],
2023-04-07 10:37:37 +00:00
"module": "ES2022",
2022-03-05 13:10:45 +00:00
"moduleResolution": "Node",
2023-05-04 12:25:17 +00:00
"resolveJsonModule": true,
2020-11-11 17:17:37 +00:00
"strict": true,
2023-04-07 10:37:37 +00:00
"target": "ES2022"
2020-11-11 17:17:37 +00:00
},
"include": [
"source"
2023-03-26 12:32:57 +00:00
]
2020-11-11 17:17:37 +00:00
}