This commit is contained in:
Baobeld 2024-12-03 16:23:39 -05:00 committed by GitHub
parent 3f5532a487
commit c2ce272041
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 226 additions and 177 deletions

View file

@ -1,36 +1,36 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
// Path mapping
"baseUrl": ".",
"paths": {
"@app": ["./src"],
"@app/*": ["./src/*"],
"@lib": ["./lib"],
"@lib/*": ["./lib/*"]
}
}
// Path mapping
"baseUrl": ".",
"paths": {
"@app": ["./src"],
"@app/*": ["./src/*"],
"@lib": ["./lib"],
"@lib/*": ["./lib/*"]
}
}
}