iptv/tsconfig.json

20 lines
382 B
JSON
Raw Permalink Normal View History

2023-09-15 17:39:28 +02:00
{
"compilerOptions": {
"strict": true,
2023-09-22 04:16:46 +02:00
"target": "es2020",
"module": "nodeNext",
"moduleResolution": "nodeNext",
2023-09-15 17:39:28 +02:00
"typeRoots": [
"./scripts/types",
"./node_modules/@types"
],
"esModuleInterop": true
},
"ts-node": {
"esm": true,
"transpileOnly": true
},
"files": [
"node_modules/jest-expect-message/types/index.d.ts"
]
}