mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 16:53:19 +08:00
22 lines
502 B
JSON
22 lines
502 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"strict": true,
|
|
"outDir": "lib",
|
|
"sourceMap": true,
|
|
"sourceRoot": ".",
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": false,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@entities": [".tmp/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "migrations/**/*", "tests/**/*"],
|
|
"exclude": ["lib", ".tmp/**/*"]
|
|
}
|