Files
seedit/tsconfig.json
2026-07-09 14:46:51 +07:00

35 lines
705 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "bundler",
"types": [
"node"
],
"paths": {
"@bitsocialnet/bitsocial-react-hooks": [
"./src/lib/bitsocial-react-hooks-compat.ts"
]
},
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}