38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2019",
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitReturns": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"resolveJsonModule": true,
|
|
"declarationMap": true
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"lib": ["es2019", "dom"],
|
|
"module": "es2022",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": false,
|
|
"paths": {
|
|
"@switchboard-xyz/switchboard-v2": ["../switchboard-v2"],
|
|
"@switchboard-xyz/sbv2-utils": ["../sbv2-utils"],
|
|
"@solana/spl-token": ["./node_modules/@solana/spl-token"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"references": [{ "path": "../switchboard-v2" }, { "path": "../sbv2-utils" }],
|
|
"files": ["src/main.ts"]
|
|
}
|