1
mirror of https://github.com/thepeacockproject/Peacock synced 2025-01-07 03:46:23 +01:00
Peacock/plugins/tsconfig.json
Lennard Fonteijn 4551059a53 Added logic to generate require table for plugins
Fixed issue where non-development builds would try to load TypeScript-based plugins
Fixed issue of non-exported interface FakePlayer
2023-04-17 00:24:13 +02:00

14 lines
336 B
JSON

{
"extends": ["../tsconfig.json"],
"compilerOptions": {
// Reset rootDir to default to make rootDirs take effect
"rootDir": null,
"rootDirs": ["../components", "."],
"paths": {
"@peacockproject/core/*": ["./components/*"]
}
},
"include": ["*.ts"],
"exclude": []
}