mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-19 19:31:17 +00:00
26 lines
629 B
JSON
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"]
|
|
}
|