- Rename package to @transquinnftw/typescript-config-react
- Add publishConfig for GitLab npm registry
- Add .gitlab-ci.yml for auto-publish on main
🤖 Generated with Claude Code
16 lines
407 B
JSON
16 lines
407 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "React TypeScript Configuration",
|
|
"extends": "@transquinnftw/typescript-config-base/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"isolatedModules": true
|
|
}
|
|
}
|