2018-12-21 14:41:34 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
2020-10-13 18:39:59 +00:00
|
|
|
"skipLibCheck": true,
|
2018-12-21 14:41:34 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-02-18 07:57:00 +00:00
|
|
|
"resolveJsonModule": true,
|
2018-12-21 14:41:34 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2020-12-02 10:19:39 +00:00
|
|
|
"types": ["webpack-env", "jest"],
|
2020-02-18 07:57:00 +00:00
|
|
|
"typeRoots": ["./@types", "./node_modules/@types"],
|
2018-12-21 14:41:34 +00:00
|
|
|
"paths": {
|
2020-02-18 07:57:00 +00:00
|
|
|
"@/*": ["src/*"]
|
2018-12-21 14:41:34 +00:00
|
|
|
},
|
2021-05-06 16:39:59 +00:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost", "webworker"]
|
2018-12-21 14:41:34 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"tests/**/*.ts",
|
|
|
|
"tests/**/*.tsx"
|
|
|
|
],
|
2020-02-18 07:57:00 +00:00
|
|
|
"exclude": ["node_modules"]
|
2020-06-25 09:38:12 +00:00
|
|
|
}
|