Skip to content

Commit d2e686f

Browse files
committed
Added config files for ts
1 parent 2a12a21 commit d2e686f

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

packages/url-utils/tsconfig.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2019",
4+
"module": "CommonJS",
5+
"moduleResolution": "node",
6+
"outDir": "./cjs",
7+
"rootDir": "./src",
8+
"declaration": true,
9+
"esModuleInterop": true,
10+
"forceConsistentCasingInFileNames": true,
11+
"strict": true,
12+
"noUnusedLocals": true,
13+
"noUnusedParameters": true,
14+
"noFallthroughCasesInSwitch": true,
15+
"skipLibCheck": true
16+
},
17+
"include": ["src"]
18+
}
19+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"compilerOptions": {
3+
"rootDir": "test",
4+
"outDir": "tmp/test"
5+
}
6+
}

0 commit comments

Comments
 (0)