{1"compilerOptions": {2"target": "es2018",3"module": "esnext",4"strict": true,5"jsx": "preserve",6"importHelpers": true,7"moduleResolution": "node",8"experimentalDecorators": true,9"skipLibCheck": true,10"esModuleInterop": true,11"allowSyntheticDefaultImports": true,12"sourceMap": true,13"baseUrl": ".",14"types": [15"node",16"webpack-env",17"../types"18],19"lib": [20"esnext",21"dom",22"dom.iterable",23"scripthost"24]25},26"include": [27"**/*.ts",28"**/*.tsx",29"**/*.vue"30],31"exclude": [32"node_modules"33]34}353637