35 lines
943 B
JSON
35 lines
943 B
JSON
{
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["tests/**/*", "lib", "node_modules"],
|
|
"files": ["./src/index.ts"],
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"moduleResolution": "node",
|
|
"composite": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"types": ["mocha", "node"],
|
|
// strict
|
|
"strict": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitReturns": true,
|
|
"strictPropertyInitialization": true,
|
|
"paths": {
|
|
"@switchboard-xyz/switchboard-v2": ["../switchboard-v2"]
|
|
}
|
|
},
|
|
"references": [{ "path": "../switchboard-v2" }]
|
|
}
|