Skip to content

Commit

Permalink
Fix compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vinimarcili committed Aug 26, 2023
1 parent dcd8563 commit 08240c0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"allowedCommonJsDependencies": [
"lodash.isequal"
],
"preserveSymlinks": true,
"outputPath": "dist/docs",
"index": "docs/src/index.html",
"main": "docs/src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion docs/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"types": []
},
"files": ["src/main.ts"],
"include": ["src/**/*.d.ts", "../src/helpers/*.ts"]
"include": ["src/**/*.d.ts"]
}
3 changes: 1 addition & 2 deletions src/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@
"inlineSources": true,
"types": []
},
"exclude": ["**/*.spec.ts"],
"include": ["**/helpers/*.ts"]
"exclude": ["**/*.spec.ts"]
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"noImplicitAny": true,
"target": "ES2022",
"module": "ES2022",
"resolveJsonModule": true,
"useDefineForClassFields": false,
"lib": ["ES2022", "dom"]
"lib": ["ES2022", "dom", "dom.iterable"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down

0 comments on commit 08240c0

Please sign in to comment.