stremio-web/tsconfig.json
Tim bb7bd40b8a
Some checks are pending
Build / build (push) Waiting to run
chore: update deprecated ts options
2026-05-05 05:05:08 +02:00

22 lines
511 B
JSON

{
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"jsx": "react",
"rootDir": "./src",
"outDir": "./dist",
"module": "nodenext",
"moduleResolution": "nodenext",
"paths": {
"stremio/*": ["./src/*"],
},
"resolveJsonModule": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"noEmit": false,
"strict": true,
},
"include": [
"src/",
]
}