Skip to content

Commit

Permalink
chore: use file instead of exclude in tsconfiig files
Browse files Browse the repository at this point in the history
  • Loading branch information
michelherv authored and just-jeb committed Mar 4, 2021
1 parent 270868e commit 025bb72
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"outDir": "./out-tsc/app",
"types": []
},
"include": [
"src/**/*.ts"
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"exclude": [
"src/test.ts",
"src/**/*.spec.ts"
"include": [
"src/**/*.d.ts"
]
}
10 changes: 5 additions & 5 deletions packages/custom-webpack/examples/sanity-app/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"outDir": "./out-tsc/app",
"types": []
},
"include": [
"src/**/*.ts"
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"exclude": [
"src/test.ts",
"src/**/*.spec.ts"
"include": [
"src/**/*.d.ts"
]
}

0 comments on commit 025bb72

Please sign in to comment.