anchor/ts/tsconfig.json

30 lines
678 B
JSON
Raw Normal View History

2020-12-31 17:54:51 -08:00
{
"include": ["./src/**/*"],
2021-03-24 20:19:29 -07:00
"compilerOptions": {
"moduleResolution": "node",
2020-12-31 17:54:51 -08:00
"module": "es6",
"target": "es2019",
"outDir": "dist/esm/",
"rootDir": "./src",
"sourceMap": true,
"declaration": true,
2021-03-27 09:47:44 -07:00
"declarationMap": true,
2020-12-31 17:54:51 -08:00
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2021-03-24 20:19:29 -07:00
"noImplicitAny": false,
2021-09-16 13:42:11 -07:00
"strictNullChecks": true,
2020-12-31 17:54:51 -08:00
"esModuleInterop": true,
"resolveJsonModule": true,
2020-12-31 17:54:51 -08:00
"composite": true,
2021-03-24 20:19:29 -07:00
"baseUrl": ".",
"typeRoots": ["types/", "node_modules/@types"],
2020-12-31 17:54:51 -08:00
"paths": {
2021-09-16 13:42:11 -07:00
"@solana/web3.js": ["./node_modules/@solana/web3.js/lib"]
2020-12-31 17:54:51 -08:00
}
}
}