Skip to content

Commit

Permalink
Cleanup tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
max-leuthaeuser committed Nov 29, 2024
1 parent af964b8 commit 81e6402
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@joernio/astgen",
"version": "3.21.0",
"version": "3.22.0",
"description": "Generate JS/TS AST in json format with Babel",
"exports": "./index.js",
"keywords": [
Expand Down Expand Up @@ -28,10 +28,10 @@
"node": ">=16.0.0"
},
"files": [
"dist/**/*.js"
"./dist/**/*.js"
],
"directories": {
"test": "test"
"test": "./test/"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
Expand Down
21 changes: 12 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
],
"include": [ "./src/**/*.ts" ],
"compilerOptions": {
"rootDir": "./src/",
"outDir": "./dist/",
"sourceMap": true,
"outDir": "dist",
"rootDir": "./src"
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}

0 comments on commit 81e6402

Please sign in to comment.