slovocast/app/tsconfig.json

31 lines
682 B
JSON
Raw Normal View History

2024-03-02 16:48:37 +00:00
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
2024-03-02 16:48:37 +00:00
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@slovo/*": [ "./src/*" ]
}
2024-03-02 16:48:37 +00:00
}
2024-03-20 02:37:26 +00:00
}