Skip to content

Commit

Permalink
manage: Replaced jsconfig.json with better tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaid committed Apr 17, 2020
1 parent ea8d692 commit 1fbb087
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 21 deletions.
21 changes: 0 additions & 21 deletions jsconfig.json

This file was deleted.

32 changes: 32 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"baseUrl": ".",
"outDir": "dist/typescript",
"declaration": true,
"emitDeclarationOnly": true,
"paths": {
"lib/*": [
"src/lib/*"
],
"src/*": [
"src/*"
],
"root/*": [
"./*"
]
}
},
"include": [
"src/**/*.js"
],
"exclude": [
"node_modules",
"dist"
],
"typeAcquisition": {
"enable": true
}
}

0 comments on commit 1fbb087

Please sign in to comment.