mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-21 22:50:51 +00:00
26 lines
720 B
JSON
26 lines
720 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"useDefineForClassFields": true,
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Node",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": ["ESNext", "DOM"],
|
||
|
"skipLibCheck": true,
|
||
|
"noEmit": true,
|
||
|
"paths": {
|
||
|
"@hoppscotch/common": [ "../hoppscotch-common/src/index.ts" ],
|
||
|
"@hoppscotch/common/*": [ "../hoppscotch-common/src/*" ],
|
||
|
"@platform/*": ["./src/platform/*"],
|
||
|
"@lib/*": ["./src/lib/*"],
|
||
|
}
|
||
|
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
}
|