23 lines
487 B
JSON
23 lines
487 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"strict": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"lib": [
|
||
|
|
"ES2022",
|
||
|
|
"DOM",
|
||
|
|
"DOM.Iterable"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|