Skip to content

Commit

Permalink
fix: correct dynamic tsconfig files
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed Jun 21, 2019
1 parent 5e3c52c commit c5cc337
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
@@ -1 +1,3 @@
The CJS Packages here are dynamically generated. Manula edits to them will be destroyed.

They are only checked in so that `lerna publish` will work.
2 changes: 1 addition & 1 deletion packages/alternative_builds/cjs/dnd-core/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "../../../../../tsconfig.base.json",
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
Expand Down
@@ -1,5 +1,5 @@
{
"extends": "../../../../../tsconfig.base.json",
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/alternative_builds/cjs/react-dnd/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "../../../../../tsconfig.base.json",
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/alternative_builds/cjs/test-backend/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "../../../../../tsconfig.base.json",
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/alternative_builds/cjs/test-utils/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "../../../../../tsconfig.base.json",
"extends": "../../../../tsconfig.base.json",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_cjs_modules.js
Expand Up @@ -84,7 +84,7 @@ coreRoots.forEach(coreRoot => {
)

const tsConfigJson = {
extends: '../../../../../tsconfig.base.json',
extends: '../../../../tsconfig.base.json',
compilerOptions: {
target: 'es5',
module: 'commonjs',
Expand Down

0 comments on commit c5cc337

Please sign in to comment.