zero-knowledge file sharing
1{
2 "compilerOptions": {
3 // Environment setup & latest features
4 "lib": ["ESNext"],
5 "target": "ESNext",
6 "module": "Preserve",
7 "moduleDetection": "force",
8 "allowJs": true,
9
10 // Bundler mode
11 "moduleResolution": "bundler",
12 "allowImportingTsExtensions": true,
13 "verbatimModuleSyntax": true,
14 "noEmit": true,
15
16 // Best practices
17 "strict": true,
18 "skipLibCheck": true,
19 "noFallthroughCasesInSwitch": true,
20 "noUncheckedIndexedAccess": true,
21 "noImplicitOverride": true
22 }
23}