Files
jrx/tsconfig.json
2026-02-28 01:42:09 +00:00

26 lines
629 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2020", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"jsx": "react-jsx",
"jsxImportSource": "@nym.sh/jrx",
"baseUrl": ".",
"paths": {
"@nym.sh/jrx/jsx-runtime": ["./src/jsx-runtime"],
"@nym.sh/jrx/jsx-dev-runtime": ["./src/jsx-dev-runtime"]
}
},
"include": ["src"]
}