chore: split app to commons and web (squash commit)
This commit is contained in:
40
packages/hoppscotch-common/tsconfig.json
Normal file
40
packages/hoppscotch-common/tsconfig.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"useDefineForClassFields": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Node",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"esModuleInterop": true,
|
||||
"lib": ["ESNext", "DOM"],
|
||||
"skipLibCheck": true,
|
||||
"noUnusedLocals": true,
|
||||
"paths": {
|
||||
"~/*": [ "./src/*" ],
|
||||
"@composables/*": [ "./src/composables/*" ],
|
||||
"@components/*": [ "./src/components/*" ],
|
||||
"@helpers/*": [ "./src/helpers/*" ],
|
||||
"@modules/*": [ "./src/modules/*" ],
|
||||
"@workers/*": [ "./src/workers/*" ],
|
||||
"@functional/*": [ "./src/helpers/functional/*" ],
|
||||
},
|
||||
"types": [
|
||||
"vite/client",
|
||||
"unplugin-icons/types/vue",
|
||||
"vite-plugin-pages/client",
|
||||
"vite-plugin-vue-layouts/client",
|
||||
"vite-plugin-pwa/client"
|
||||
],
|
||||
},
|
||||
"include": [
|
||||
"meta.ts",
|
||||
"src/**/*.ts",
|
||||
"src/**/*.d.ts",
|
||||
"src/**/*.tsx",
|
||||
"src/**/*.vue",
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user