pulumi/sdk/nodejs/tests/runtime/testdata/closure-tests/tsconfig.json

22 lines
567 B
JSON
Raw Normal View History

Reorganize closure tests to prepare for multiple typescript versions (#15753) # Description In preparation of https://github.com/pulumi/pulumi/issues/15735 we make the closure tests proper integration tests so that we can run them with different typescript versions. Move each test to its own folder instead of one large file. This PR only changes tests, and does not touch any of the function serialisation code. Some snapshots had to be updated for indentation changes. Hidden after all the test cases is the test script [sdk/nodejs/tests/runtime/testdata/closure-tests/test.ts](https://github.com/pulumi/pulumi/blob/dfcc953c08051555ba1fa363b0694d195cfcc27a/sdk/nodejs/tests/runtime/testdata/closure-tests/test.ts) Verified that tests run in CI https://github.com/pulumi/pulumi/actions/runs/8389170587/job/22975068167?pr=15753 ## Checklist - [x] I have run `make tidy` to update any new dependencies - [x] I have run `make lint` to verify my code passes the lint check - [x] I have formatted my code using `gofumpt` <!--- Please provide details if the checkbox below is to be left unchecked. --> - [x] I have added tests that prove my fix is effective or that my feature works <!--- User-facing changes require a CHANGELOG entry. --> - [x] I have run `make changelog` and committed the `changelog/pending/<file>` documenting my change <!-- If the change(s) in this PR is a modification of an existing call to the Pulumi Cloud, then the service should honor older versions of the CLI where this change would not exist. You must then bump the API version in /pkg/backend/httpstate/client/api.go, as well as add it to the service. --> - [ ] Yes, there are changes in this PR that warrants bumping the Pulumi Cloud API version <!-- @Pulumi employees: If yes, you must submit corresponding changes in the service repo. -->
2024-03-25 13:19:17 +00:00
{
"compilerOptions": {
"strict": true,
"target": "es2016",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"resolveJsonModule": true,
"sourceMap": true,
"stripInternal": true,
"experimentalDecorators": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
},
"include": [
"cases/**/*.ts",
"test.ts"
]
}