Update tsconfig.json

pull/85/head
Jonas Kruckenberg 4 years ago
parent 14072226bf
commit 1f4f63c9f2
No known key found for this signature in database
GPG Key ID: 21AD3B3C266BDE3D

@ -1,16 +1,24 @@
{
"compilerOptions": {
"target": "ES5",
"target": "ES2019",
"strict": true,
"allowJs": true,
"lib": [
"ES2019",
"ES2020.Promise",
"ES2020.String",
"DOM",
],
"noEmitOnError": true,
"isolatedModules": true,
// module resolution
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"types": ["@types"]
},
"moduleResolution": "node",
// advanced
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"declaration": true,
"declarationDir": "../webview-dist",
"rootDir": "./"
"rootDir": "./",
},
"include": ["./"]
}
"exclude": ["node_modules"]
}
Loading…
Cancel
Save