API-Explorer-II/tsconfig.app.json

14 lines
341 B
JSON
Raw Permalink Normal View History

2023-03-29 15:22:33 +00:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "test/integration.test.ts", "playwright.config.ts"],
2023-03-29 15:22:33 +00:00
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
2023-04-20 06:04:46 +00:00
"esModuleInterop": true,
2023-03-29 15:22:33 +00:00
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}