Files
solana-swap-program/tsconfig.json

17 lines
372 B
JSON
Raw Permalink Normal View History

2026-01-08 09:20:05 +00:00
{
"compilerOptions": {
"types": ["mocha"],
"lib": ["es2020"],
"target": "es2020",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "."
},
"include": ["tests/**/*", "migrations/**/*"]
}