tsconfig exclude build artifacts

This commit is contained in:
Lukas Hass 2022-02-03 18:45:26 +01:00
parent c7fa2fc36b
commit b6b7d1e66c
No known key found for this signature in database
GPG Key ID: 7C8CEF72C4039178

View File

@ -28,5 +28,11 @@
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */ "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
} },
"exclude": [
"node_modules",
"dist",
"public/iframe_api.js",
"packages/iframe-api-typings"
]
} }