Fixes build folder compilation + enable linux .deb files (#23006)

This commit is contained in:
Cheena Malhotra
2023-05-08 13:40:53 -07:00
committed by GitHub
parent 9415db87a2
commit ea39622e81
57 changed files with 1212 additions and 2101 deletions

View File

@@ -1,6 +1,7 @@
{
"compilerOptions": {
"target": "es2017",
"target": "es2020",
"lib": ["ES2020"],
"module": "commonjs",
"alwaysStrict": true,
"removeComments": false,
@@ -12,19 +13,19 @@
// use the tsconfig.build.json for compiling which disable JavaScript
// type checking so that JavaScript file are not transpiled
"allowJs": true,
"checkJs": true,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "lf"
"newLine": "lf",
"noEmit": true
},
"include": [
"**/*.ts"
"**/*.ts",
"**/*.js"
],
"exclude": [
"node_modules/**",
"actions/**" // {{SQL CARBON EDIT}}
"node_modules/**"
]
}