1{ 2 "extends": "./tsconfig.base.json", 3 "include": [ "src/**/*" ], 4 "exclude": [ 5 "./node_modules/", 6 "./src/service_worker/", 7 "./src/gen/", 8 "./out" 9 ], 10 "compilerOptions": { 11 "outDir": "./out/tsc", 12 "lib": [ 13 "dom", // Need to be explicitly mentioned now since we're overriding default included libs. 14 "es2020", // Need this to use Promise.allSettled. 15 ], 16 "paths": { 17 "*" : ["*", "./node_modules/@tsundoku/micromodal_types/*"] 18 }, 19 "esModuleInterop": true, 20 "allowSyntheticDefaultImports": true, 21 } 22} 23