Files
DefinitelyTyped/types/cyclonedx/tsconfig.json
Erlend Oftedal e8dbba2613 🤖 Merge PR #64105 Add types for the CycloneDX SBOM specification by @eoftedal
* Adds types for CycloneDX 1.2-1.4 JSON blobs

* Running prettier

* Split tests into files and reduce size

* Updated the reference to the original v1.2 SBOM

* Move tests to tests directory

* Rename tests to test

* Fix of files after move
2023-02-23 08:15:49 -08:00

27 lines
615 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/cyclonedx-tests.ts",
"test/cyclonedx_v1_2-tests.ts",
"test/cyclonedx_v1_3-tests.ts",
"test/cyclonedx_v1_4-tests.ts"
]
}