Compare commits
4 Commits
ec2bd27acd
...
dc89f6cbb9
Author | SHA1 | Date |
---|---|---|
Coin de Gamma | dc89f6cbb9 | 7 months ago |
glitch4347 | 547c15c0b6 | 7 months ago |
glitch4347 | 32d122ba4d | 7 months ago |
glitch4347 | 9c165f4e1f | 7 months ago |
10 changed files with 1417 additions and 7 deletions
@ -0,0 +1,26 @@
|
||||
const path = require('path'); |
||||
|
||||
module.exports = { |
||||
entry: './src/index.tsx', |
||||
module: { |
||||
rules: [ |
||||
{ |
||||
test: /\.tsx?$/, |
||||
use: 'ts-loader', |
||||
exclude: /node_modules/, |
||||
}, |
||||
], |
||||
}, |
||||
resolve: { |
||||
extensions: ['.tsx', '.ts', '.js'], |
||||
}, |
||||
output: { |
||||
filename: 'index.js', |
||||
path: path.resolve(__dirname, '../dist'), |
||||
libraryTarget: 'umd', |
||||
umdNamedDefine: true, |
||||
}, |
||||
externals: [ |
||||
'@chartwerk/line-pod', 'react' |
||||
] |
||||
}; |
@ -0,0 +1,8 @@
|
||||
const baseWebpackConfig = require('./webpack.base.conf'); |
||||
|
||||
var conf = baseWebpackConfig; |
||||
conf.devtool = 'inline-source-map'; |
||||
conf.mode = 'development'; |
||||
conf.output.filename = 'index.dev.js'; |
||||
|
||||
module.exports = conf; |
@ -0,0 +1,6 @@
|
||||
const baseWebpackConfig = require('./webpack.base.conf'); |
||||
|
||||
var conf = baseWebpackConfig; |
||||
conf.mode = 'production'; |
||||
|
||||
module.exports = baseWebpackConfig; |
@ -0,0 +1,23 @@
|
||||
{ |
||||
"name": "line-pod-react", |
||||
"version": "0.0.1", |
||||
"description": "React wrapper around line-pod", |
||||
"main": "dist/index.js", |
||||
"repository": "http://code.corpglory.net/chartwerk/line-pod.git", |
||||
"author": "CorpGlory Inc.", |
||||
"license": "ISC", |
||||
"scripts": { |
||||
"build": "webpack --config build/webpack.prod.conf.js", |
||||
"dev": "webpack --config build/webpack.dev.conf.js" |
||||
}, |
||||
"dependencies": { |
||||
"@chartwerk/line-pod": "workspace:*", |
||||
"react": "^18.2.0", |
||||
"react-dom": "^18.2.0" |
||||
}, |
||||
"devDependencies": { |
||||
"ts-loader": "^9.5.1", |
||||
"typescript": "^5.4.3", |
||||
"webpack": "^5.87.0" |
||||
} |
||||
} |
@ -0,0 +1,23 @@
|
||||
{ |
||||
"compilerOptions": { |
||||
"target": "es5", |
||||
"rootDir": "./src", |
||||
"module": "esnext", |
||||
"moduleResolution": "node", |
||||
"declaration": true, |
||||
"declarationDir": "dist", |
||||
"allowSyntheticDefaultImports": true, |
||||
"inlineSourceMap": false, |
||||
"sourceMap": true, |
||||
"noEmitOnError": false, |
||||
"emitDecoratorMetadata": false, |
||||
"experimentalDecorators": true, |
||||
"noImplicitReturns": true, |
||||
"noImplicitThis": false, |
||||
"noImplicitUseStrict": false, |
||||
"noImplicitAny": false, |
||||
"noUnusedLocals": false, |
||||
"baseUrl": "./src", |
||||
"jsx": "react" |
||||
} |
||||
} |
Loading…
Reference in new issue