RESTfulMC/JS-SDK/tsconfig.json
Rainnny7 76201edd92
Some checks failed
Publish JS SDK / docker (push) Failing after 18s
Lib -> JS-SDK
2024-04-15 07:20:56 -04:00

22 lines
410 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"skipLibCheck": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"allowJs": true,
"noEmit": true,
"outDir": "dist",
"resolveJsonModule": true,
"paths": {
"@/*": ["./*"],
"@/lib/*": ["./src/lib/*"],
"@/types/*": ["./src/types/*"]
}
}
}