Skip to content

Commit

Permalink
add .npmignore and update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
rehhouari committed Feb 22, 2024
1 parent 8a84456 commit 0c39402
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 17 deletions.
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.vscode/
.github/
.editorconfig
.eslintignore
.eslintrc.js
.pnpm-debug.log
40 changes: 23 additions & 17 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
},
"exclude": ["*/**/dist", "node_modules"]
}
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": [
"DOM",
"ESNext"
],
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
},
"exclude": [
"/dist",
"node_modules"
]
}

0 comments on commit 0c39402

Please sign in to comment.