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