mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-19 19:31:17 +00:00
24 lines
546 B
JSON
24 lines
546 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"lib": ["ESNext", "DOM"],
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "Preserve",
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"allowJs": true,
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"exclude": ["dist", "node_modules"]
|
||
|
|
}
|