Skip to content

Commit bf85608

Browse files
committed
chore(config): update tsconfig for root directory
1 parent 01eb3ca commit bf85608

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

tsconfig.json

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
3+
"display": "Default",
24
"compilerOptions": {
5+
"composite": false,
36
"declaration": true,
47
"declarationMap": true,
5-
"module": "commonjs",
6-
"target": "ES2020",
7-
"outDir": "dist",
8-
"rootDir": "src",
8+
"esModuleInterop": true,
9+
"forceConsistentCasingInFileNames": true,
10+
"inlineSources": false,
11+
"isolatedModules": true,
12+
"moduleResolution": "node",
13+
"noUnusedLocals": false,
14+
"noUnusedParameters": false,
15+
"preserveWatchOutput": true,
16+
"skipLibCheck": true,
917
"strict": true
1018
},
11-
"include": ["src"],
12-
"exclude": ["node_modules", "dist"]
19+
"exclude": ["node_modules"]
1320
}

0 commit comments

Comments
 (0)