mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
20 lines
610 B
JSON
20 lines
610 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "**/*.d.ts", "node_modules/vite-plugin-pwa/client.d.ts"],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "DOM.Iterable"],
|
|
"target": "es2022",
|
|
"module": "es2022",
|
|
"moduleResolution": "Node",
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["naive-ui/volar", "@intlify/unplugin-vue-i18n/messages", "unplugin-icons/types/vue"],
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"skipLibCheck": true
|
|
}
|
|
}
|