You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
910 B
JSON
36 lines
910 B
JSON
|
4 months ago
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "esnext",
|
||
|
|
"module": "esnext",
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"strictFunctionTypes": false,
|
||
|
|
"preserveValueImports": false,
|
||
|
|
"isolatedModules": false,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"types": ["node", "webpack-env", "vue/types", "vue-router/types"],
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
},
|
||
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||
|
|
},
|
||
|
|
"files": ["*.d.ts", "**/*.ts", "**/*.tsx", "**/*.vue", "**/*.ts", "**/*.tsx"],
|
||
|
|
"include": [
|
||
|
|
"*.d.ts",
|
||
|
|
"**/*.ts",
|
||
|
|
"**/*.tsx",
|
||
|
|
"**/*.vue",
|
||
|
|
"**/*.ts",
|
||
|
|
"**/*.tsx"
|
||
|
|
],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|