react-native-mask-segment-c.../tsconfig.build.json
a1518 8bc66a4ee9
Some checks failed
Publish to npm / publish (push) Has been cancelled
refactor: remove Chinese, add build obfuscation, polish README
- Remove all Chinese characters from src/, example/, ios/, patches/, tests/
- Add esbuild-based build obfuscation (minify + identifier mangle + no sourcemaps)
- Drop src/ from npm publish, only ship minified dist/
- Remove source maps and declaration maps from build output
- Add README icons and visual polish throughout
- Fix broken Table of Contents anchor links in README

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 19:07:32 -07:00

18 lines
472 B
JSON

{
"extends": "@react-native/typescript-config/tsconfig.json",
"compilerOptions": {
"noEmit": false,
"outDir": "dist",
"declaration": true,
"declarationMap": false,
"sourceMap": false,
"emitDeclarationOnly": true,
"jsx": "react-jsx",
"skipLibCheck": true,
"allowImportingTsExtensions": false,
"allowArbitraryExtensions": false
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["example", "node_modules", "dist"]
}