mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-21 14:38:47 +00:00
22 lines
565 B
JSON
22 lines
565 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
},
|
|
"types": ["@types/node", "@types/jest", "@relmify/jest-fp-ts", "vite/client"],
|
|
"outDir": "./dist/",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["./src", "./src/global.d.ts"],
|
|
"exclude": ["node_modules", "./src/__tests__"]
|
|
}
|