This commit removes `ts-api-guardian` from the repository. We introduced a new tool for testing API signature that is part of the shared dev-infra package. The TS API guardian package will be deprecated for the public in favor of Microsoft's API extractor that has support for more parts of the syntax, such as alias exports. PR Close #42735
37 lines
697 B
JSON
37 lines
697 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "../dist/tools/",
|
|
"noImplicitAny": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {},
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"target": "es5",
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"testing",
|
|
"node_modules",
|
|
"typings-test",
|
|
"public_api_guard",
|
|
"docs"
|
|
],
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
}
|
|
}
|