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