Skip to content

Commit

Permalink
Update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierZal committed Apr 29, 2024
1 parent fe8e30e commit 7211173
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 84 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
/.vscode/*
!/.vscode/settings.json
/coverage/
/node_modules/
/env.json
/env.json
/node_modules/
23 changes: 15 additions & 8 deletions .homeyignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
coverage/*
docs/*
tests/*
eslint.config.js
jest.config.ts
sonar-project.properties
LICENSE
README.md
/.github/
/.gitignore
/.homeybuild/
/.homeycompose/
/.homeychangelog.json
/.prettierignore
/.vscode/
/LICENSE
/README.md
/coverage/
/docs/
/eslint.config.js
/jest.config.ts
/sonar-project.properties
/tests/
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/locales/
/app.json
/app.json
/locales/
121 changes: 57 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"devDependencies": {
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin": "^1.7.2",
"@tsconfig/node21": "^21.0.3",
"@types/homey": "npm:homey-apps-sdk-v3-types@^0.3.5",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
Expand All @@ -29,17 +28,17 @@
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-markdown": "^4.0.1",
"globals": "^15.0.0",
"globals": "^15.1.0",
"homey": "^3.2.4",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
"typescript-eslint": "^7.8.0"
},
"dependencies": {
"axios": "^1.6.8",
"axios-cookiejar-support": "^5.0.1",
"luxon": "^3.4.4",
"source-map-support": "^0.5.21",
"tough-cookie": "^4.1.3"
"tough-cookie": "^4.1.4"
}
}
11 changes: 7 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"extends": "@tsconfig/node21/tsconfig.json",
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"lib": ["DOM", "ESNext"],
"module": "NodeNext",
"noImplicitOverride": true,
"outDir": ".homeybuild/",
"sourceMap": true
"outDir": ".homeybuild",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2022"
}
}

0 comments on commit 7211173

Please sign in to comment.