1
Fork 0
tildes-reextended/tsconfig.json

20 lines
328 B
JSON
Raw Permalink Normal View History

2019-11-10 17:38:47 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
2023-06-21 18:14:20 +00:00
"jsx": "react-jsx",
"jsxImportSource": "preact",
"lib": [
2023-06-21 18:14:20 +00:00
"DOM",
"ES2022"
],
2023-06-21 18:14:20 +00:00
"module": "ES2022",
"moduleResolution": "Node",
"resolveJsonModule": true,
2019-11-10 17:38:47 +00:00
"strict": true,
2023-06-21 18:14:20 +00:00
"target": "ES2022"
2019-11-10 17:38:47 +00:00
},
"include": [
2023-06-21 18:14:20 +00:00
"source"
2019-11-10 17:38:47 +00:00
]
}