mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-05 17:35:36 -05:00
24 lines
552 B
JSON
24 lines
552 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"paths": {
|
|
"react": ["./node_modules/preact/compat/"],
|
|
"react-dom": ["./node_modules/preact/compat/"]
|
|
},
|
|
"lib": ["DOM.iterable"],
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|