You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.4 KiB
JSON

1 year ago
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"DOM",
"ESNext"
],
1 year ago
"jsx": "preserve",
"module": "ESNext",
1 year ago
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
],
"#/*": [
"src/types/*"
]
},
1 year ago
"types": [
"vitest",
"vite/client",
"vue/ref-macros",
"vite-plugin-pages/client",
"vite-plugin-vue-component-preview/client",
"vite-plugin-vue-layouts/client",
"vite-plugin-pwa/client",
"unplugin-vue-macros/macros-global",
"naive-ui",
"naive-ui/volar"
1 year ago
],
"resolveJsonModule": true,
"allowJs": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"skipLibCheck": true
1 year ago
},
"vueCompilerOptions": {
"plugins": [
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-slots",
"@vue-macros/volar/short-vmodel"
]
},
"include": [
"tests/**/*.ts",
"src/**/*.ts",
1 year ago
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
"build/**/*.ts",
"build/**/*.d.ts",
"mock/**/*.ts",
"vite.config.ts"
],
"exclude": [
"dist",
"node_modules",
"cypress"
1 year ago
]
}