og/tsconfig.json

17 lines
328 B
JSON
Raw Permalink Normal View History

2023-02-14 19:26:11 +00:00
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"target": "ES2022",
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true,
"baseUrl": ".",
"noEmit": true,
"forceConsistentCasingInFileNames": true
}
}