p-stream/tsconfig.json
2025-10-25 00:21:34 -06:00

28 lines
755 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022.Array", "ES2022", "DOM", "DOM.Iterable"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "./src",
"paths": {
"@/*": ["./*"],
"@sozialhelden/ietf-language-tags": [
"../node_modules/@sozialhelden/ietf-language-tags/dist/cjs"
]
},
"typeRoots": ["node_modules/@types"]
},
"include": ["src"]
}