{ "compilerOptions": { "module": "ESNext", "target": "ESNext", "moduleResolution": "Node", "outDir": "dist", "lib": [ "esnext", "esnext.array", "esnext.asyncIterable", "esnext.intl", "esnext.symbol" ], "sourceMap": true, // "inlineSourceMap": true, // "inlineSources": true, "incremental": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "resolveJsonModule": true, "noImplicitOverride": true, "noErrorTruncation": true, "strict": true, "baseUrl": "./", "useUnknownInCatchVariables": false, "forceConsistentCasingInFileNames": true, "noEmitHelpers": true, "importHelpers": true, "allowSyntheticDefaultImports": true, // "importsNotUsedAsValues": "error", "preserveValueImports": true, "removeComments": true, "paths": { "#lib": [ "./src/lib/index.js" ], "#root/*": [ "./*" ] } }, "include": [ "src/**/*.ts", "lib/**/*.ts", "ecosystem.config.cjs" ], "exclude": [ "dist", "node_modules" ] }