forked from sharevb/it-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
23 lines (23 loc) · 814 Bytes
/
Copy pathtsconfig.app.json
File metadata and controls
23 lines (23 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"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"],
"target": "es2022",
"module": "es2022",
"moduleResolution": "bundler",
"composite": true,
"paths": {
"@/*": ["./src/*"],
"figue": ["./node_modules/figue/dist/index.d.ts"],
"@it-tools/oggen": ["./node_modules/@it-tools/oggen/dist/index.d.ts"],
"libphonenumber-js/types": ["./node_modules/libphonenumber-js/types.d.ts"]
},
"types": ["naive-ui/volar", "@intlify/unplugin-vue-i18n/messages", "unplugin-icons/types/vue"],
"esModuleInterop": true,
"jsx": "preserve",
"skipLibCheck": true,
"allowJs": true
}
}