mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-15 10:14:19 +00:00
23 lines
578 B
JSON
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"]
|
|
}
|