| 12345678910111213141516171819202122232425262728293031323334353637383940 | {  "compilerOptions": {    "target": "es2016",    "module": "esnext",    "strict": true,    "jsx": "preserve",    "importHelpers": true,    "moduleResolution": "node",    "experimentalDecorators": true,    "skipLibCheck": true,    "esModuleInterop": true,    "allowSyntheticDefaultImports": true,    "sourceMap": true,    "baseUrl": ".",    "types": [      "webpack-env"    ],    "paths": {      "@/*": [        "src/*"      ]    },    "lib": [      "esnext",      "dom",      "dom.iterable",      "scripthost"    ]  },  "include": [    "src/**/*.ts",    "src/**/*.tsx",    "src/**/*.vue",    "tests/**/*.ts",    "tests/**/*.tsx", "../sso-system/jwt_verify.ts", "../sso-system/isAuthenticated.ts", "../sso-system/checkSSORedirect.ts"  ],  "exclude": [    "node_modules"  ]}
 |