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