@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
17 lines (16 loc) • 499 B
JSON
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "./dist",
"composite": true,
"paths": {
"@ocpp/*": ["./src/ocpp/*"],
"@config/*": ["./src/config/*"],
"@interfaces/*": ["./src/interfaces/*"],
"@base-util/*": ["./src/util/*"]
}
},
"include": ["**/*", "**/*.json"],
"exclude": ["**/dist/**", "**/node_modules/**", "**/vitest.config.ts", "**/test/**"]
}