OpChan/tsconfig.app.json

44 lines
1.0 KiB
JSON
Raw Normal View History

2025-04-15 16:28:03 +05:30
{
"compilerOptions": {
"target": "ES2022",
2025-04-15 16:28:03 +05:30
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
2025-04-15 16:28:03 +05:30
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
2025-08-28 19:07:26 +05:30
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
2025-04-15 16:28:03 +05:30
2025-08-30 18:34:50 +05:30
/* Import/Module Strictness */
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
/* Import Resolution Strictness */
"verbatimModuleSyntax": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2025-04-15 16:28:03 +05:30
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}