Skip to content

Commit 2c69f5f

Browse files
committed
Add skipLibCheck option to tsconfig files for improved type checking
1 parent c8185a2 commit 2c69f5f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

tsconfig-es.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"target": "es6",
66
"lib": ["dom", "esnext"],
77
"outDir": "lib/es",
8-
"composite": true
8+
"composite": true,
9+
"skipLibCheck": true
910
},
1011
"exclude": ["node_modules", "lib", "samples", "test/development"],
1112
"include": ["./src/**/*.ts", "./test/**/*.ts"]

tsconfig-sub-es.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"module": "es6",
55
"target": "es6",
66
"lib": ["dom", "esnext"],
7-
"outDir": "authProviders/es"
7+
"outDir": "authProviders/es",
8+
"skipLibCheck": true
89
},
910
"exclude": ["node_modules", "lib", "samples", "test/**", "src"],
1011
"include": ["authProviderOptions/es/**/*.ts"],

0 commit comments

Comments
 (0)