{ "compilerOptions": { "target": "ES2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, "module": "NodeNext" /* Specify what module code is generated. */, "moduleResolution": "NodeNext" /* Specify how TypeScript looks up a file from a given module specifier. */, "allowJs": true /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */, "rootDir": "src", "outDir": "./build" /* Specify an output folder for all emitted files. */, "esModuleInterop": true, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, /* Type Checking */ "strict": true /* Enable all strict type-checking options. */, "noImplicitAny": true /* Enable error reporting when 'this' is given the type 'any'. */, "useUnknownInCatchVariables": true /* Ensure 'use strict' is always emitted. */, "noUnusedLocals": true /* Enable error reporting when local variables aren't read. */, "noUnusedParameters": true /* Raise an error when a function parameter isn't read. */, "exactOptionalPropertyTypes": true /* Interpret optional property types as written, rather than adding 'undefined'. */, "noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */, "noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */, "noUncheckedIndexedAccess": true /* Add 'undefined' to a type when accessed using an index. */, "noImplicitOverride": true /* Ensure overriding members in derived classes are marked with an override modifier. */, "allowUnusedLabels": true /* Disable error reporting for unused labels. */, "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, "include": ["src/**/*"], // we manually copy the scripts folder over so we don't want tsc to mess // anything up "exclude": ["src/scripts"] }