38 lines
768 B
JSON
38 lines
768 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
"target": "esnext",
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-pages/client",
|
|
"unplugin-icons/types/vue",
|
|
"unplugin-vue-router/client"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
]
|
|
}
|