2022-06-07 19:26:07 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "dist",
|
|
|
|
"rootDir": "src",
|
|
|
|
"strict": false,
|
|
|
|
"target": "es2019",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
2022-06-29 18:44:33 -07:00
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"paths": {
|
|
|
|
"@solana/spl-token": [
|
|
|
|
"../node_modules/@solana/spl-token",
|
|
|
|
"./node_modules/@solana/spl-token"
|
|
|
|
]
|
|
|
|
}
|
2022-06-07 19:26:07 -07:00
|
|
|
},
|
|
|
|
"files": ["src/index.ts"],
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|