fix: exclude app.js and lib from typescript compliation

This commit is contained in:
2024-01-04 10:09:02 +01:00
parent 63a38e0077
commit 40d72fa0cc
15 changed files with 27 additions and 19 deletions

View File

@@ -2,9 +2,7 @@
"extends": "@openstapps/tsconfig",
"compilerOptions": {
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"allowJs": true,
"checkJs": true
"useUnknownInCatchVariables": false
},
"exclude": ["app.js", "lib/"]
"exclude": ["lib", "app.js"]
}

View File

@@ -1,4 +1,4 @@
{
"extends": "@openstapps/tsconfig",
"exclude": ["./config/", "./lib/"]
"exclude": ["config", "lib", "app.js"]
}