Files
react-native-svg/tsconfig.json
Wojciech Lewicki 2b030dda12 feat: move css to different package for size reduction (#2168)
PR based on https://github.com/software-mansion/react-native-svg/pull/1452 extracting `css` related components to different package to reduce the size of the package.

***THIS IS A BREAKING CHANGE***. From now on, you should import 
```
  SvgCss,
  SvgCssUri,
  SvgWithCss,
  SvgWithCssUri,
  inlineStyles,
  LocalSvg,
  WithLocalSvg,
  loadLocalRawResource,
  ```
 from `react-native-svg/css` package instead.
2023-11-14 11:50:03 +01:00

24 lines
566 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"paths": {
"react-native-svg": ["./src"],
"react-native-svg/css": ["./src/css/index.tsx"],
},
"preserveSymlinks": true,
"target": "es6",
"module": "ESNext",
"jsx": "react-native",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"lib": ["es6", "dom"],
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": ["src"]
}