Skip to content

Commit

Permalink
Chore: Upgrade typescript dependency, clean up compilerOptions (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy authored Jan 21, 2024
1 parent a6afaa1 commit c6fa68e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 47 deletions.
25 changes: 6 additions & 19 deletions package-lock.json

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

9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -230,21 +230,16 @@
"@webdoc/cli": "^2.2.0",
"base64-to-image": "^1.0.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"electron": "^28.0.0",
"eslint": "^8.32.0",
"fs-extra": "^7.0.1",
"gifencoder": "^2.0.1",
"gradient-parser": "^1.0.2",
"http-server": "^14.1.1",
"magic-string": "^0.27.0",
"npm-run-all": "^4.1.5",
"open-cli": "^7.1.0",
"pixi.js": "8.0.0-rc.4",
"pre-commit": "^1.2.2",
"rimraf": "^4.1.1",
"tslib": "^2.0.3",
"typescript": "^4.8.0"
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"pixi.js": ">=8.0.0-0"
Expand Down
File renamed without changes.
28 changes: 7 additions & 21 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,15 @@
{
"extends": "@pixi/extension-scripts/tsconfig",
"compilerOptions": {
"moduleResolution": "node",
"allowJs": false,
"target": "ES2017",
"removeComments": false,
"esModuleInterop": true,
"strict": true,
"sourceMap": true,
"inlineSources": true,
"baseUrl": "./",
"outDir": "./lib",
"declaration": true,
"skipLibCheck": true
"skipLibCheck": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules",
"**/dist/**",
"**/lib/**",
"**/test/**",
"**/scripts/**",
"**/types/**",
"rollup.config.js"
"**/test/**"
],
"include": [
"src",
"./global.d.ts"
"src"
]
}

0 comments on commit c6fa68e

Please sign in to comment.