Skip to content

Commit

Permalink
fix: config typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
batosai committed Oct 29, 2024
1 parent 38274ee commit 6555855
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 27 deletions.
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jrmc/etl",
"version": "1.0.0",
"version": "1.0.1",
"type": "module",
"description": "Extract transform load for nodejs",
"engines": {
Expand Down Expand Up @@ -34,12 +34,13 @@
},
"exports": {
".": "./build/index.js",
"./types/*": "./build/src/types.js",
"./types": "./build/src/types.js",
"./source": "./build/src/base_source.js",
"./transform": "./build/src/base_transform.js",
"./destination": "./build/src/base_destination.js"
},
"devDependencies": {
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^3.0.0",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.7.26",
Expand Down
26 changes: 1 addition & 25 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,7 @@
{
"extends": "@adonisjs/tsconfig/tsconfig.package.json",
"compilerOptions": {
"declaration": false,
"sourceMap": true,
"emitDecoratorMetadata": true,
"types": ["@types/node"],
"target": "ESNext",
"module": "NodeNext",
"lib": ["ESNext"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"removeComments": true,
"esModuleInterop": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"skipLibCheck": true,
"rootDir": "./",
"outDir": "./build"
},
"ts-node": {
"swc": true
}
}

0 comments on commit 6555855

Please sign in to comment.