Skip to content

Commit

Permalink
Add build tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbockhorst committed May 13, 2023
1 parent a6567f7 commit f2f9481
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
out
node_modules
.vscode-test
tsconfig.tsbuildinfo
*.tsbuildinfo
coverage
elm-stuff
17 changes: 17 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"noEmit": true,
"module": "commonjs",
"target": "es6",
"strict": true,
"lib": ["es6", "ES2020"],
"sourceMap": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"composite": true,
"baseUrl": ".",
"typeRoots": ["./src/typings", "./node_modules/@types"]
},
"exclude": ["node_modules"],
"include": ["src"]
}

0 comments on commit f2f9481

Please sign in to comment.