29 lines
569 B
JSON
29 lines
569 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"importHelpers": true,
|
||
|
"moduleResolution": "node",
|
||
|
"experimentalDecorators": 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"
|
||
|
],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|