/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "lib": ["ESNext"], 4 "target": "ESNext", 5 "module": "Preserve", 6 "moduleDetection": "force", 7 "moduleResolution": "bundler", 8 "allowImportingTsExtensions": true, 9 "verbatimModuleSyntax": true, 10 "noEmit": true, 11 "strict": true, 12 "skipLibCheck": true, 13 "noFallthroughCasesInSwitch": true, 14 "noUncheckedIndexedAccess": true 15 }, 16 "include": ["src"] 17 }