Files
bsky-social-app/bskyembed/tsconfig.json
T
Samuel Newman 9c6483f6d7 fix clipping
2026-08-19 17:32:31 +03:00

25 lines
679 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", "tailwind.config.mjs", "postcss.config.mjs"]
}