sbv2-solana/libraries/sbv2-utils/tsconfig.json

18 lines
376 B
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
"extends": "./tsconfig.base.json",
2022-05-17 09:42:04 -07:00
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "node",
"module": "es2022",
"target": "es2019",
"outDir": "lib/esm/",
2022-06-30 13:59:24 -07:00
"rootDir": "./src",
"paths": {
"@solana/spl-token": [
"../../node_modules/@solana/spl-token",
"./node_modules/@solana/spl-token"
]
}
2022-05-26 12:30:10 -07:00
}
2022-05-17 09:42:04 -07:00
}