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