2
0
mirror of https://github.com/tribufu/sdk-js synced 2025-06-23 21:44:37 +00:00
Files
sdk-js/tsconfig.json
2025-05-27 08:11:22 -03:00

23 lines
578 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "esnext",
"declaration": true,
"emitDeclarationOnly": true,
"noImplicitAny": false,
"moduleResolution": "Node",
"esModuleInterop": true,
"module": "esnext",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"rootDir": "src",
"outDir": "build",
"lib": ["ESNext", "DOM"],
"paths": {
"@/*": ["./*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["build", "node_modules"]
}