streamarr/tsconfig.json
2024-09-10 22:58:35 +02:00

21 lines
474 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"noEmit": true,
"types": ["vinxi/types/client"],
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
}
},
"include": [ "src", "styled-system" ]
}