sbv2-solana/website/tsconfig.json

17 lines
505 B
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@tsconfig/docusaurus/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"sourceMap": true,
"paths": {
"@switchboard-xyz/switchboard-v2": ["../libraries/ts"]
}
},
"include": ["src/**/*", "src/**/*.json"],
"exclude": ["static", "public", "node_modules"],
"references": [{ "path": "../libraries/ts" }],
"files": ["src/pages/index.tsx"]
}