Skip to content

Commit

Permalink
Cleanup tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jridgewell committed Jun 26, 2022
1 parent 4bc71a6 commit 5291d65
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,16 @@
"moduleResolution": "node",
"esModuleInterop": true,
"target": "es2015",
"module":"es2015",
"module": "es2015",
"lib": ["es2015"],
"strict": true,
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"declarationDir": "dist/types",
"outDir": "dist/lib",
"typeRoots": [
"node_modules/@types"
]
"typeRoots": ["node_modules/@types"]
},
"exclude": [
"dist"
],
"include": [
"src",
"test"
]
"exclude": ["dist"],
"include": ["src", "test"]
}

0 comments on commit 5291d65

Please sign in to comment.