mirror of https://github.com/halo-dev/halo
17 lines
416 B
JSON
17 lines
416 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
|
"exclude": ["src/**/__tests__/*", "packages/**/*"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"noImplicitAny": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"noStrictGenericChecks": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"types": ["unplugin-icons/types/vue"]
|
|
}
|
|
}
|