mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-15 18:24:19 +00:00
32 lines
653 B
JSON
32 lines
653 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
],
|
|
"exclude": [
|
|
"build",
|
|
"node_modules",
|
|
],
|
|
}
|