streamarr/tsconfig.json
2025-03-31 00:34:55 +02:00

28 lines
642 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": [
"@solidjs/start/env",
"@testing-library/jest-dom",
"@types/wicg-file-system-access",
"vinxi/types/client",
"vite-plugin-solid-svg/types-component-solid",
"bun-types"
],
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
}
},
"include": ["src"]
}