Files
bsky-social-app/bskyembed/tsconfig.json
T
2026-08-19 17:32:30 +03:00

25 lines
634 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"lib": ["DOM", "ESNext"],
"types": ["node", "vite/client"],
"allowJs": false,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"paths": {
"#/*": ["./src/*"],
}
},
"include": ["src", "snippet", "vite.config.ts", "*.config.cjs", "eslint.config.mjs"]
}