-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: four codesandbox-demos during build-process
On typescript-demo and on gondel-react: Error: Cannot find module 'typescript' On plugin-data-demo and on react-gondel: Failed to load '/project/sandbox/webpack.config.js' config On react-gondel: Error: Cannot find module '@babel/plugin-proposal-decorators'
- Loading branch information
Stefan.Brueck
committed
Oct 24, 2023
1 parent
3c1b726
commit 247f4ad
Showing
6 changed files
with
58 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,27 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"skipLibCheck": true | ||
"skipLibCheck": true, | ||
"sourceMap": true, | ||
"target": "es5", | ||
"module": "esnext", | ||
"jsx": "react", | ||
"allowSyntheticDefaultImports": true, | ||
"moduleResolution": "node", | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"declaration": false, | ||
"noImplicitAny": true, | ||
"noImplicitReturns": true, | ||
"strictNullChecks": true, | ||
"removeComments": false, | ||
"importHelpers": true, | ||
"outDir": "dist", | ||
"types": ["jest", "webpack-env"], | ||
"lib": ["es6", "es7", "dom"] | ||
}, | ||
"exclude": ["dist", "build", "node_modules"], | ||
"paths": { | ||
"@gondel/core/*": ["./packages/core/src/*"], | ||
"@gondel/plugin-*/*": ["./packages/plugins/*/*"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,27 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"skipLibCheck": true | ||
"skipLibCheck": true, | ||
"sourceMap": true, | ||
"target": "es5", | ||
"module": "esnext", | ||
"jsx": "react", | ||
"allowSyntheticDefaultImports": true, | ||
"moduleResolution": "node", | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"declaration": false, | ||
"noImplicitAny": true, | ||
"noImplicitReturns": true, | ||
"strictNullChecks": true, | ||
"removeComments": false, | ||
"importHelpers": true, | ||
"outDir": "dist", | ||
"types": ["jest", "webpack-env"], | ||
"lib": ["es6", "es7", "dom"] | ||
}, | ||
"exclude": ["dist", "build", "node_modules"], | ||
"paths": { | ||
"@gondel/core/*": ["./packages/core/src/*"], | ||
"@gondel/plugin-*/*": ["./packages/plugins/*/*"] | ||
} | ||
} |