2023-07-18 07:03:15 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"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/*"]
|
|
|
|
},
|
2023-09-20 08:14:22 +00:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
|
|
"resolveJsonModule": true
|
2023-07-18 07:03:15 +00:00
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|