31 lines
695 B
JSON
31 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"isolatedModules": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"stripInternal": true,
|
|
"target": "esnext",
|
|
"types": [
|
|
"./src/types.d.ts",
|
|
"vite/client",
|
|
"unplugin-icons/types/vue",
|
|
"vite-plugin-pages/client"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.vue"
|
|
]
|
|
}
|