2024-07-30 17:45:27 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node10",
|
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"types": ["vite/client", "@intlify/unplugin-vue-i18n/messages"],
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
},
|
|
|
|
"checkJs": false, // check later
|
|
|
|
},
|
2025-01-13 00:50:22 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.vue", "tests/auth.spec.ts"],
|
2024-07-30 17:45:27 +00:00
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
}
|