Skip to content

Commit 923a84c

Browse files
committed
package init
0 parents  commit 923a84c

File tree

7 files changed

+100
-0
lines changed

7 files changed

+100
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
sample

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src

package-lock.json

Lines changed: 52 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "tsconfig-paths-resolver",
3+
"type": "commonjs",
4+
"version": "1.0.0",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"dev": "tsnd --respawn --clear ./src/main.ts",
8+
"build": "tsc src/index.ts"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/Safin-Ali/tsconfig-paths-resolver.git"
13+
},
14+
"author": "Safin Ali",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/Safin-Ali/tsconfig-paths-resolver/issues"
18+
},
19+
"homepage": "https://github.com/Safin-Ali/tsconfig-paths-resolver#readme",
20+
"description": "",
21+
"dependencies": {
22+
"json-to-js-obj": "^1.0.5",
23+
"typescript": "^5.2.2"
24+
},
25+
"devDependencies": {
26+
"@types/node": "^20.8.6"
27+
}
28+
}

src/index.ts

Whitespace-only changes.

src/main.ts

Whitespace-only changes.

tsconfig.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"compilerOptions": {
3+
"module": "CommonJS",
4+
"target": "ES6",
5+
"forceConsistentCasingInFileNames": true,
6+
"esModuleInterop": true,
7+
"outDir": "./dist",
8+
"strict": true
9+
},
10+
"include": [
11+
"src/**/*"
12+
],
13+
"exclude": [
14+
"node_modules"
15+
]
16+
}

0 commit comments

Comments
 (0)