Skip to content

Commit

Permalink
fix(ts-config): missing project issue
Browse files Browse the repository at this point in the history
  • Loading branch information
trylovetom committed Feb 23, 2020
1 parent 747dde2 commit 073762e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/TSConfig/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"outDir": "dist",
"baseUrl": ".",
"outDir": "../../../dist",
"module": "commonjs",
"moduleResolution": "Node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
Expand All @@ -15,6 +15,9 @@
"checkJs": true,
"resolveJsonModule": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "public"]
"exclude": [
"../../../node_modules",
"../../../dist",
"../../../public"
]
}

0 comments on commit 073762e

Please sign in to comment.