You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
528 B
22 lines
528 B
3 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"sourceMap": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": ["esnext", "dom"],
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
3 years ago
|
},
|
||
3 years ago
|
"skipLibCheck": true,
|
||
3 years ago
|
"types": ["vite/client"],
|
||
|
"plugins": [{ "name": "typescript-plugin-css-modules" }]
|
||
3 years ago
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
|
}
|