/ tsconfig.json
tsconfig.json
1 { 2 "extends": "@tsconfig/strictest/tsconfig.json", 3 "include": [ 4 "src" 5 ], 6 "compilerOptions": { 7 "declaration": true, 8 "removeComments": false, 9 "lib": [ 10 "ES2020", 11 "DOM", 12 ], 13 "outDir": "./dist", 14 "module": "ESNext", 15 "moduleResolution": "Bundler", 16 "verbatimModuleSyntax": true, 17 "sourceMap": true, 18 "noUncheckedIndexedAccess": true 19 } 20 }