19 lines
462 B
JSON
19 lines
462 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["mocha", "chai"],
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"lib": ["es2015"],
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@switchboard-xyz/switchboard-v2": ["../../libraries/ts"]
|
|
}
|
|
},
|
|
// "include": ["oldtests/**/**/*"],
|
|
"exclude": ["target"],
|
|
"references": [{ "path": "../../libraries/ts" }]
|
|
}
|