38 lines
750 B
JSON
38 lines
750 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "es2017",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext"
|
|
],
|
|
"noEmit": true,
|
|
"declaration": false,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": false,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"vite/client",
|
|
"@types/node",
|
|
"unplugin-icons/types/vue"
|
|
]
|
|
},
|
|
"include": [
|
|
"components",
|
|
"src",
|
|
"src/.vuepress/auto-imports.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|