2026-02-27 00:31:52 +00:00
|
|
|
{
|
|
|
|
|
"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",
|
2026-02-28 01:42:09 +00:00
|
|
|
"jsxImportSource": "@nym.sh/jrx",
|
2026-02-27 00:31:52 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
2026-02-28 01:42:09 +00:00
|
|
|
"@nym.sh/jrx/jsx-runtime": ["./src/jsx-runtime"],
|
|
|
|
|
"@nym.sh/jrx/jsx-dev-runtime": ["./src/jsx-dev-runtime"]
|
2026-02-27 00:31:52 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|