This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/tsconfig.app.json

27 lines
664 B
JSON
Raw Permalink Normal View History

2022-04-10 00:40:15 +00:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*.d.ts", "src/**/*", "src/**/*.vue", "src/**/*.json"],
2022-04-10 00:40:15 +00:00
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"lib": ["ESNext", "DOM", "WebWorker"],
2022-04-10 00:40:15 +00:00
2022-04-23 11:15:19 +00:00
"importHelpers": true,
"sourceMap": true,
"strictNullChecks": true,
2022-04-10 00:40:15 +00:00
"paths": {
"@/*": ["./src/*"]
},
2022-05-22 14:20:06 +00:00
"types": [
// https://github.com/ikenfin/vite-plugin-sentry#typescript
"vite-plugin-sentry/client"
],
"ignoreDeprecations": "5.0"
2022-09-06 09:36:01 +00:00
},
"vueCompilerOptions": {
2022-10-17 13:49:02 +00:00
// "strictTemplates": true
"jsxTemplates": true
2022-04-10 00:40:15 +00:00
}
}