mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-20 03:41:18 +00:00
26 lines
605 B
JSON
26 lines
605 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": "jrx",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"jrx/jsx-runtime": ["./src/jsx-runtime"],
|
||
|
|
"jrx/jsx-dev-runtime": ["./src/jsx-dev-runtime"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src"]
|
||
|
|
}
|