All checks were successful
Code quality checks / biome (push) Successful in 15s
30 lines
762 B
JSON
30 lines
762 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@*": ["src/*"],
|
|
"@config/*": ["config/*"],
|
|
"@types/*": ["types/*"],
|
|
"@helpers/*": ["src/helpers/*"]
|
|
},
|
|
"typeRoots": ["./types", "./node_modules/@types"],
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"allowJs": false,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": false,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noPropertyAccessFromIndexSignature": false
|
|
},
|
|
"include": ["src", "types"]
|
|
}
|