{ "compilerOptions": { /* Projects */ /* Language and Environment */ "target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, "lib": [ "ES6" ] /* Specify a set of bundled library declaration files that describe the target runtime environment. */, /* Modules */ "module": "ESNext" /* Specify what module code is generated. */, // "rootDir": "./src" /* Specify the root folder within your source files. */, "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */, "resolveJsonModule": true /* Enable importing .json files. */, /* JavaScript Support */ "allowJs": true /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */, /* Emit */ "outDir": "./out" /* Specify an output folder for all emitted files. */, /* Interop Constraints */ "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, /* Type Checking */ "strict": true /* Enable all strict type-checking options. */, "noUnusedLocals": true /* Enable error reporting when local variables aren't read. */, "noUnusedParameters": true /* Raise an error when a function parameter isn't read. */, /* Completeness */ "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, "exclude": ["node_modules"], "ts-node": { "esm": true, "experimentalSpecifierResolution": "node" } }