pulumi/sdk/nodejs/tsconfig.json
Anton Tayanovskyy babedf5171
Ignore logflow args in Node providers (#7644)
* Ignore logflow args in Node providers

* Add unit test, handle --tracing

* Add missing files

* Add CHANGELOG

* Lint
2021-07-26 19:52:59 -04:00

105 lines
2.8 KiB
JSON

{
"compilerOptions": {
"strict": true,
"outDir": "bin",
"target": "es2016",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"sourceMap": false,
"stripInternal": true,
"experimentalDecorators": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.ts",
"config.ts",
"errors.ts",
"metadata.ts",
"output.ts",
"resource.ts",
"stackReference.ts",
"utils.ts",
"version.ts",
"asset/index.ts",
"asset/asset.ts",
"asset/archive.ts",
"dynamic/index.ts",
"iterable/index.ts",
"log/index.ts",
"provider/index.ts",
"provider/provider.ts",
"provider/internals.ts",
"provider/server.ts",
"runtime/index.ts",
"runtime/closure/codePaths.ts",
"runtime/closure/createClosure.ts",
"runtime/closure/parseFunction.ts",
"runtime/closure/rewriteSuper.ts",
"runtime/closure/serializeClosure.ts",
"runtime/closure/utils.ts",
"runtime/closure/v8.ts",
"runtime/closure/v8_v10andLower.ts",
"runtime/closure/v8_v11andHigher.ts",
"runtime/asyncIterableUtil.ts",
"runtime/config.ts",
"runtime/debuggable.ts",
"runtime/invoke.ts",
"runtime/mocks.ts",
"runtime/resource.ts",
"runtime/rpc.ts",
"runtime/settings.ts",
"runtime/stack.ts",
"cmd/dynamic-provider/index.ts",
"cmd/run/index.ts",
"cmd/run/run.ts",
"cmd/run-policy-pack/index.ts",
"cmd/run-policy-pack/run.ts",
"automation/index.ts",
"automation/cmd.ts",
"automation/config.ts",
"automation/localWorkspace.ts",
"automation/minimumVersion.ts",
"automation/projectSettings.ts",
"automation/stackSettings.ts",
"automation/server.ts",
"automation/stack.ts",
"automation/workspace.ts",
"tests/config.spec.ts",
"tests/init.spec.ts",
"tests/iterable.spec.ts",
"tests/options.spec.ts",
"tests/output.spec.ts",
"tests/resource.spec.ts",
"tests/provider.spec.ts",
"tests/testmode.spec.ts",
"tests/unwrap.spec.ts",
"tests/util.ts",
"tests/runtime/asyncIterableUtil.spec.ts",
"tests/runtime/closureLoader.spec.ts",
"tests/runtime/registrations.spec.ts",
"tests/runtime/tsClosureCases.ts",
"tests/runtime/props.spec.ts",
"tests/runtime/settings.spec.ts",
"tests/runtime/langhost/run.spec.ts",
"tests/automation/localWorkspace.spec.ts",
"tests_with_mocks/mocks.spec.ts",
]
}