Skip to content

Commit d20c097

Browse files
"Remove extra lines and tsconfig.json from .gitignore"
1 parent bc7866b commit d20c097

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,3 @@ dist
128128
.yarn/build-state.yml
129129
.yarn/install-state.gz
130130
.pnp.*
131-
132-
# Extra
133-
tsconfig.json

tsconfig.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2020",
4+
"module": "CommonJS",
5+
"moduleResolution": "node",
6+
"strict": true,
7+
"noImplicitAny": true,
8+
"strictNullChecks": true,
9+
"esModuleInterop": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"declaration": true,
12+
"isolatedModules": true,
13+
"noEmit": true,
14+
"outDir": "./dist",
15+
"rootDir": "./src",
16+
"types": ["node"]
17+
},
18+
"include": ["src/**/*.ts"],
19+
"exclude": ["node_modules", "dist"]
20+
}

0 commit comments

Comments
 (0)