tsconfig.json (hoppscotch-2.2.1) | : | tsconfig.json (hoppscotch-3.0.0) | ||
---|---|---|---|---|
{ | { | |||
"compilerOptions": { | "compilerOptions": { | |||
"target": "ES6", | "target": "ES6", | |||
"module": "ESNext", | "module": "CommonJS", | |||
"moduleResolution": "Node", | "moduleResolution": "Node", | |||
"skipLibCheck": true, | ||||
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"], | "lib": ["ESNext", "ESNext.AsyncIterable", "DOM"], | |||
"esModuleInterop": true, | "esModuleInterop": true, | |||
"strict": true, | "strict": true, | |||
"paths": { | "paths": { | |||
"~/*": ["./src/*"], | "~/*": ["./src/*"], | |||
"@/*": ["./src/*"] | "@/*": ["./src/*"] | |||
}, | }, | |||
"types": ["@types/node", "@types/jest", "@relmify/jest-fp-ts"], | "types": ["@types/node", "@types/jest", "@relmify/jest-fp-ts"], | |||
"outDir": "./lib/", | "outDir": "./lib/", | |||
"rootDir": "./src/", | "rootDir": "./src/", | |||
"declaration": true, | "declaration": true, | |||
"declarationMap": true, | "declarationMap": true, | |||
"sourceMap": true | "sourceMap": true | |||
}, | }, | |||
"include": ["./src", "./src/global.d.ts"], | "include": ["./src", "./src/global.d.ts"], | |||
"exclude": ["node_modules", "./src/__tests__", "./src/demo.ts"] | "exclude": ["node_modules", "./src/__tests__"] | |||
} | } | |||
End of changes. 3 change blocks. | ||||
2 lines changed or deleted | 3 lines changed or added |