Skip to content

Commit 94c2634

Browse files
committed
Update tsconfig.json
1 parent e9d9a52 commit 94c2634

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

tsconfig.json

+13-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
{
22
"compilerOptions": {
3-
"target": "es5",
3+
"target": "ES2019",
44
"module": "commonjs",
5-
"lib": ["ES2015", "DOM"],
6-
"declaration": true,
7-
"sourceMap": true,
8-
"outDir": "./lib",
9-
"rootDir": "./src",
5+
"moduleResolution": "node",
6+
7+
"rootDir": "src",
8+
"outDir": "lib",
9+
1010
"strict": true,
1111
"esModuleInterop": true,
12-
"forceConsistentCasingInFileNames": true
13-
}
12+
13+
"sourceMap": true,
14+
"declaration": true,
15+
"declarationMap": true
16+
},
17+
"include": ["src/**/*"],
18+
"exclude": ["node_modules", "**/*.spec.ts"]
1419
}

0 commit comments

Comments
 (0)