30 lines
745 B
JSON
30 lines
745 B
JSON
|
{
|
||
|
"include": ["./src/**/*"],
|
||
|
"compilerOptions": {
|
||
|
"target": "es2019",
|
||
|
"sourceMap": true,
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"esModuleInterop": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"composite": true,
|
||
|
"skipLibCheck": true,
|
||
|
// strict
|
||
|
"strict": true,
|
||
|
"noImplicitThis": true,
|
||
|
"alwaysStrict": true,
|
||
|
"noImplicitAny": false,
|
||
|
"strictNullChecks": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"strictPropertyInitialization": true,
|
||
|
"paths": {
|
||
|
"@switchboard-xyz/switchboard-v2": ["../ts"]
|
||
|
}
|
||
|
},
|
||
|
"references": [{ "path": "../ts" }]
|
||
|
}
|