Files
bbf72c0b-a095-4fae-87f9-06c…/tsconfig.app.json
2026-04-10 03:20:23 +03:00

30 lines
578 B
JSON

{
"compilerOptions": {
"target": "es2023",
"lib": [
"ES2023",
"DOM"
],
"module": "esnext",
"types": [],
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src"
]
}