{ "extends": "../../tsconfig.json", "compilerOptions": { "noImplicitAny": false, "strictNullChecks": true, "allowJs": true, "lib": [ "ES2019", // This is necessary because -- for some unknown reason -- the AWS SDK // depends on the DOM. Do people even run the AWS SDK in the browser? // I hope not. "DOM" ], "rootDir": ".", "baseUrl": ".", "outDir": "./js", // USE TS-NODE! "noEmit": true, "typeRoots": [ "@types", "node_modules/@types" ], "paths": { "tachi-common": [ "../../common/src" ], "tachi-common/*": [ "../../common/src/*" ] }, "composite": true, "tsBuildInfoFile": ".tsbuildinfo" }, "ts-node": { "require": [ "tsconfig-paths/register" ] }, "exclude": [ "node_modules", ], "references": [ { "path": "../../common" } ], }