Skip to content

Commit

Permalink
fix: update jsconfig and tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostdevv committed Feb 24, 2023
1 parent 9ee5986 commit dc96114
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/popular-laws-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-jellycommands': patch
---

update the jsconfig.json and tsconfig.json
19 changes: 19 additions & 0 deletions packages/create-jellycommands/src/js/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// * Don't delete me!!!
// * If you have questions, ask in The Dev Lounge Discord
// * https://discord.com/invite/2Vd4wAjJnm

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "ESNext",
"target": "ESNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"checkJs": true,
"allowJs": true
},
"include": ["./src/**/*.js", "./src/**/*.ts"],
}
17 changes: 12 additions & 5 deletions packages/create-jellycommands/src/ts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
// * Don't delete me!!!
// * If you have questions, ask in The Dev Lounge Discord
// * https://discord.com/invite/2Vd4wAjJnm

{
"compilerOptions": {
"strict": true,
"lib": ["ESNext"],
"module": "ESNext",
"target": "ESNext",
"allowSyntheticDefaultImports": true,
"moduleResolution": "node"
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"checkJs": true,
"allowJs": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules/**"]
"include": ["./src/**/*.js", "./src/**/*.ts"],
}

0 comments on commit dc96114

Please sign in to comment.