14 lines
295 B
JSON
14 lines
295 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"lib": ["ES2020", "DOM"],
|
|
"skipLibCheck": true,
|
|
"paths": { "@/*": ["./src/*"] }
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
}
|