1234567891011121314151617181920212223 |
- {
- "extends": "../../tsconfig.json",
- "compilerOptions": {
- "types": ["vite/client", "vitest/globals", "naive-ui/volar", "node"],
- "paths": {
- "@/*": ["src/*"],
- "@test/*": ["test/*"]
- },
- "baseUrl": "../.."
- },
- "include": [
- "../../src/**/*.ts",
- "../../src/**/*.d.ts",
- "../../src/**/*.tsx",
- "../../src/**/*.vue",
- "../../tests/unit/**.ts",
- "../../tests/unit/**.spec.ts",
- "**/*.ts",
- "**/*.d.ts",
- "**/*.tsx",
- "**/*.vue"
- ]
- }
|