create-pact-toolbox-app
Version:
Create Pact Toolbox apps with one command
29 lines (26 loc) • 671 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"~/pact/*": ["./pact/*"]
}
},
"include": ["src", "pact/**/*"],
"references": [{ "path": "./tsconfig.node.json" }]
}