Browse Source

Adds skipLibCheck

main
Eric Amodio 5 years ago
parent
commit
38593e6e02
3 changed files with 3 additions and 4 deletions
  1. +1
    -2
      tsconfig.eslint.json
  2. +1
    -0
      tsconfig.json
  3. +1
    -2
      tsconfig.webviews.json

+ 1
- 2
tsconfig.eslint.json View File

@ -1,8 +1,7 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"lib": ["dom", "dom.iterable", "es2018"],
"skipLibCheck": true
"lib": ["dom", "dom.iterable", "es2018"]
}, },
"exclude": ["node_modules", "test"] "exclude": ["node_modules", "test"]
} }

+ 1
- 0
tsconfig.json View File

@ -11,6 +11,7 @@
"outDir": "dist", "outDir": "dist",
"resolveJsonModule": true, "resolveJsonModule": true,
"rootDir": "src", "rootDir": "src",
"skipLibCheck": true,
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"target": "es2018" "target": "es2018"

+ 1
- 2
tsconfig.webviews.json View File

@ -2,8 +2,7 @@
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"lib": ["dom", "dom.iterable", "es2018"], "lib": ["dom", "dom.iterable", "es2018"],
"outDir": "dist/webviews",
"skipLibCheck": true
"outDir": "dist/webviews"
}, },
"include": ["src/config.ts", "src/webviews/protocol.ts", "src/webviews/apps/**/*"], "include": ["src/config.ts", "src/webviews/protocol.ts", "src/webviews/apps/**/*"],
"exclude": ["node_modules", "test"] "exclude": ["node_modules", "test"]

Loading…
Cancel
Save