{ "compilerOptions": { "module": "CommonJS", "target": "ESNext", "declaration": true, "allowJs": false, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "experimentalDecorators": true, "strict": true, "skipLibCheck": true, "importHelpers": true, "lib": [ "ESNext", "DOM" ], "outDir": "lib", /* Redirect output structure to the directory. */ "rootDir": "src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ "types": [ "node", "mocha" ], "forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ "resolveJsonModule": true }, "include": [ "src/**/*.ts" ], "exclude": [ "node_modules" ] }